forked from crcatala/karma-time-stats-reporter
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
54 lines (54 loc) · 1.79 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": "karma-time-stats-reporter",
"version": "0.1.0",
"description": "Karma Reporter for test time stats",
"author": "Christian Catalan",
"repository": {
"type": "git",
"url": "https://github.com/crcatala/karma-time-stats-reporter"
},
"license": "MIT",
"keywords": [
"karma-plugin",
"karma-reporter"
],
"main": "index.js",
"dependencies": {
"chalk": "^2.4.2",
"columnify": "^1.5.4"
},
"devDependencies": {
"bats": "^1.1.0",
"browserify": "^16.2.3",
"chai": "^4.2.0",
"eslint": "^5.14.0",
"eslint-config-prettier": "^4.0.0",
"eslint-config-standard": "^12.0.0",
"eslint-plugin-import": "^2.16.0",
"eslint-plugin-node": "^8.0.1",
"eslint-plugin-promise": "^4.0.1",
"eslint-plugin-standard": "^4.0.0",
"karma": "^4.0.0",
"karma-browserify": "^6.0.0",
"karma-chai": "^0.1.0",
"karma-chrome-launcher": "^2.2.0",
"karma-mocha": "^1.3.0",
"karma-mocha-reporter": "^2.2.5",
"karma-sinon-chai": "^2.0.2",
"karma-spec-reporter": "0.0.32",
"mocha": "^5.2.0",
"sinon": "^7.2.3",
"sinon-chai": "^3.3.0",
"watchify": "^3.11.0"
},
"scripts": {
"test:lib": "npm run test:lib:unit && npm run test:lib:integration",
"test:lib:integration": "bats test/integration",
"test:lib:integration:examples": "karma start test/integration/examples/karma.conf.js",
"test:lib:integration:examples:multibrowser": "karma start test/integration/examples/karma.conf.js --browsers=Chrome,ChromeHeadless",
"test:lib:unit": "karma start test/unit/karma.unit.conf.js --single-run",
"test:lib:unit:watch": "karma start test/unit/karma.unit.conf.js --auto-watch",
"ci:test:lib:unit": "karma start test/unit/karma.unit.conf.js --single-run",
"ci:test:lib:integration": "bats test/integration"
}
}