-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
54 lines (54 loc) · 1.09 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
51
52
53
54
{
"name": "@aerokube/cypress-moon",
"version": "1.0.8",
"moonVersion": "2.6.1",
"description": "Binary installer to use Cypress with Moon",
"repository": "aerokube/cypress-moon",
"author": "Ivan Krutov <[email protected]>",
"license": "Apache-2.0",
"main": "index.js",
"bin": {
"cypress-moon": "cli.js"
},
"dependencies": {
"follow-redirects": "1.15.4",
"rimraf": "^3.0.2"
},
"devDependencies": {
"bin-check": "^4.1.0",
"eslint": "^7.27.0",
"mocha": "10.1.0",
"nyc": "^15.1.0"
},
"scripts": {
"eslint": "eslint .",
"mocha": "mocha",
"test": "npm run eslint && npm run mocha",
"postinstall": "rimraf vendor && node lib/install"
},
"files": [
"lib/*.js",
"cli.js",
"index.js"
],
"engines": {
"node": ">=10"
},
"eslintConfig": {
"extends": "eslint:recommended",
"env": {
"es2017": true,
"node": true
},
"rules": {
"prefer-destructuring": [
"error",
{
"object": true,
"array": false
}
],
"strict": "error"
}
}
}