-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
43 lines (43 loc) · 1.06 KB
/
package.json
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
{
"name": "next-session-client",
"version": "0.0.0",
"main": "main.js",
"devDependencies": {
"@dotcom-tool-kit/component": "^4.1.2",
"babel-core": "^6.24.0",
"babel-loader": "^6.4.0",
"babel-preset-es2015": "^6.24.0",
"chai": "^3.0.0",
"check-engines": "^1.5.0",
"dotcom-tool-kit": "^3.5.2",
"karma": "^6.4.2",
"karma-chai": "^0.1.0",
"karma-cli": "^1.0.1",
"karma-firefox-launcher": "^2.1.2",
"karma-mocha": "^1.3.0",
"karma-sinon": "^1.0.5",
"karma-webpack": "^2.0.3",
"mocha": "^6.2.3",
"sinon": "^1.14.1",
"webpack": "^2.2.1"
},
"engines": {
"node": "16.x || 18.x",
"npm": "7.x || 8.x || 9.x"
},
"scripts": {
"build": "dotcom-tool-kit build:local",
"test": "dotcom-tool-kit test:local",
"start": "dotcom-tool-kit run:local"
},
"husky": {
"hooks": {
"commit-msg": "node_modules/.bin/secret-squirrel-commitmsg",
"pre-commit": "node_modules/.bin/secret-squirrel",
"pre-push": "make test && make verify -j3"
}
},
"volta": {
"node": "18.16.0"
}
}