-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
50 lines (50 loc) · 1.65 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
44
45
46
47
48
49
50
{
"name": "@modernpoacher/zashiki-react-redux-e2e",
"version": "1.0.0",
"description": "Zashiki E2E",
"private": true,
"main": "./index.mjs",
"type": "module",
"author": {
"name": "Jonathan Perry for Modern Poacher Limited",
"email": "[email protected]",
"url": "https://modernpoacher.com"
},
"license": "UNLICENSED",
"engines": {
"node": ">=18.12.0"
},
"repository": {
"type": "git",
"url": "git+ssh://[email protected]/modernpoacher/zashiki-react-redux-e2e.git"
},
"scripts": {
"array": "cross-env NODE_ENV=production mocha spec/array --recursive --verbose",
"boolean": "cross-env NODE_ENV=production mocha spec/boolean --recursive --verbose",
"clean": "rimraf .screenshots/*.png",
"lint": "eslint . --ext .mjs,.cjs",
"lint:fix": "npm run lint -- --fix",
"null": "cross-env NODE_ENV=production mocha spec/null --recursive --verbose",
"number": "cross-env NODE_ENV=production mocha spec/number --recursive --verbose",
"object": "cross-env NODE_ENV=production mocha spec/object --recursive --verbose",
"prepare": "husky",
"start": "cross-env NODE_ENV=production mocha spec --recursive --verbose",
"string": "cross-env NODE_ENV=production mocha spec/string --recursive --verbose"
},
"dependencies": {
"chai": "^5.1.2",
"cross-env": "^7.0.3",
"debug": "^4.4.0",
"mocha": "^11.1.0",
"puppeteer": "^24.1.1"
},
"devDependencies": {
"@babel/core": "^7.26.7",
"@babel/eslint-parser": "^7.26.5",
"@babel/preset-env": "^7.26.7",
"core-js": "^3.40.0",
"eslint": "8.57.1",
"eslint-config-standard": "^17.1.0",
"husky": "^9.1.7"
}
}