forked from marcules/karma-remap-istanbul
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
69 lines (69 loc) · 1.55 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
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
{
"name": "karma-remap-istanbul",
"version": "0.5.0",
"description": "Call remap-istanbul as a karma reporter, enabling remapped reports on watch",
"main": "index.js",
"files": [
"index.js"
],
"repository": {
"type": "git",
"url": "git://github.com/marcules/karma-remap-istanbul.git"
},
"keywords": [
"remap-istanbul",
"karma-plugin",
"karma-reporter"
],
"author": "Marc A. Harnos <mharnos@gmail.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/marcules/karma-remap-istanbul/issues"
},
"homepage": "https://github.com/marcules/karma-remap-istanbul#readme",
"dependencies": {
"istanbul": "^0.4.3",
"object.assign": "^4.0.4",
"remap-istanbul": "^0.6.4"
},
"peerDependencies": {
"karma": ">=0.9"
},
"scripts": {
"lint": "xo",
"pretest": "npm run lint",
"test": "nyc mocha",
"test:watch": "mocha --watch",
"preversion": "npm test"
},
"devDependencies": {
"@types/chai": "^3.4.34",
"@types/mocha": "^2.2.33",
"chai": "^3.5.0",
"karma": "^1.3.0",
"karma-mocha": "^1.3.0",
"karma-phantomjs-launcher": "^1.0.2",
"karma-sourcemap-loader": "^0.3.7",
"karma-webpack": "^1.8.0",
"mocha": "^3.2.0",
"nyc": "^10.0.0",
"sourcemap-istanbul-instrumenter-loader": "^0.2.0",
"ts-loader": "^1.3.3",
"typescript": "^2.1.0",
"webpack": "^1.14.0",
"xo": "^0.17.1"
},
"nyc": {
"reporter": [
"html",
"text-summary"
]
},
"xo": {
"space": true,
"envs": [
"node",
"mocha"
]
}
}