-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
50 lines (50 loc) · 917 Bytes
/
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
{
"ava": {
"files": [
"test/**/*"
],
"helpers": [
"**/helpers/**/*"
],
"verbose": "true"
},
"scripts": {
"start": "http-server -c-1",
"test": "nyc ava",
"cy:run": "cypress run",
"cy:open": "cypress open",
"cy:verify": "cypress verify",
"lint": "standard | snazzy",
"coverage": "nyc --reporter=lcov npm test"
},
"devDependencies": {
"ava": "^2.4.0",
"cypress": "^3.8.1",
"http-server": "^0.12.0",
"jquery": "^3.5.0",
"jsdom": "^15.2.1",
"nyc": "^15.0.0",
"sinon": "^8.0.2",
"snazzy": "^8.0.0",
"standard": "^14.3.1"
},
"engines": {
"node": ">=8.0.0"
},
"standard": {
"globals": [
"cy",
"it",
"describe",
"context",
"before",
"beforeEach",
"expect",
"assert",
"specify"
],
"ignore": [
"/cypress/integration/examples"
]
}
}