-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
72 lines (72 loc) · 2.37 KB
/
package.json
File metadata and controls
72 lines (72 loc) · 2.37 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
{
"name": "bookingsync-calendar-widget",
"version": "3.1.1",
"description": "Smily Calendar Widget (formerly BookingSync)",
"main": "dist/bookingsync-calendar-widget.js",
"module": "src/index.js",
"sideEffects": false,
"files": [
"/dist",
"/src"
],
"scripts": {
"dev": "JSON_SERVER_PORT=3000 node json-server.js --quiet & webpack serve --open --config webpack.dev.js",
"build:unminified": "webpack --config webpack.dev.js",
"build": "webpack --config webpack.prod.js",
"test": "JSON_SERVER_PORT=3000 node json-server.js --quiet & karma start karma.config.js --colors",
"test-ci": "JSON_SERVER_PORT=3000 node json-server.js --quiet & sleep 2 && curl http://localhost:3000/api/v2/public/maps.json >/dev/null && karma start karma.config.js --single-run true",
"lint:js": "eslint ./*.js src",
"mock-server": "JSON_SERVER_PORT=3000 node nodemon-start.js",
"preversion": "pnpm run lint:js && pnpm run test-ci",
"version": "pnpm run build && pnpm run build:unminified && git add -A dist",
"postversion": "git push && git push --tags && rm -rf build/temp"
},
"dependencies": {
"strtime": "^1.1.2",
"widget-utils": "1.0.0"
},
"devDependencies": {
"@babel/cli": "^7.28.6",
"@babel/core": "^7.29.0",
"@babel/preset-env": "^7.29.2",
"assert": "^2.1.0",
"babel-loader": "^10.1.1",
"chai": "^6.2.2",
"css-loader": "^7.1.4",
"eslint": "^10.2.0",
"eslint-webpack-plugin": "^6.0.0",
"json-server": "0.17.4",
"karma": "^6.4.4",
"karma-chrome-launcher": "^3.2.0",
"karma-mocha": "^2.0.1",
"karma-webpack": "5.0.1",
"mocha": "11.7.5",
"nodemon": "^3.1.14",
"sass": "^1.99.0",
"sass-loader": "^16.0.7",
"style-loader": "^4.0.0",
"tether": "3.0.2",
"timezone-mock": "1.4.2",
"util": "^0.12.5",
"webpack": "^5.105.4",
"webpack-cli": "^7.0.2",
"webpack-dev-server": "5.2.3",
"webpack-merge": "^6.0.1",
"yargs": "18.0.0"
},
"repository": {
"type": "git",
"url": "git+https://github.com/BookingSync/calendar-widget.git"
},
"author": "BookingSync.com",
"license": "MIT",
"bugs": {
"url": "https://github.com/BookingSync/calendar-widget/issues"
},
"homepage": "https://github.com/BookingSync/calendar-widget#readme",
"packageManager": "pnpm@10.33.0",
"engines": {
"node": "^20.19.0 || ^22.13.0 || >=24",
"pnpm": ">=10.0.0"
}
}