-
Notifications
You must be signed in to change notification settings - Fork 10
/
package.json
33 lines (33 loc) · 949 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
{
"private": true,
"scripts": {
"lint": "semistandard",
"test-node": "qunit --require ./test/setup test/",
"test-node-cover": "nyc qunit --require ./test/setup test/",
"test-node-watch": "qunit --watch --require ./test/setup test/",
"test-browser": "karma start",
"test-browser-watch": "karma start --auto-watch --no-single-run",
"test": "npm run lint && npm run test-node && npm run test-browser",
"cover": "npm run test-node-cover && npm run test-browser && nyc report"
},
"dependencies": {},
"devDependencies": {
"karma": "^6.4.2",
"karma-chrome-launcher": "^3.2.0",
"karma-coverage": "^2.2.1",
"karma-firefox-launcher": "^2.1.3",
"karma-qunit": "^4.2.0",
"nyc": "^15.1.0",
"qunit": "^2.20.0",
"semistandard": "^17.0.0"
},
"nyc": {
"temp-dir": ".nyc_output/",
"report-dir": "coverage/",
"reporter": [
"text",
"html",
"clover"
]
}
}