-
Notifications
You must be signed in to change notification settings - Fork 79
/
package.json
52 lines (52 loc) · 1.23 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
{
"name": "remap-istanbul",
"version": "0.14.0-pre",
"description": "A tool for remapping Istanbul coverage via Source Maps",
"homepage": "https://github.com/SitePen/remap-istanbul",
"keywords": [
"gulpplugin",
"gruntplugin",
"source-map",
"istanbul",
"coverage"
],
"maintainers": [
{
"name": "dylans",
"email": "[email protected]"
}
],
"bugs": {
"url": "https://github.com/SitePen/remap-istanbul"
},
"license": "BSD-3-Clause",
"main": "./lib/main.js",
"bin": "./bin/remap-istanbul.js",
"repository": {
"type": "git",
"url": "https://github.com/SitePen/remap-istanbul.git"
},
"scripts": {
"lint": "eslint ./lib/",
"test": "rimraf ./tmp && npx intern config=tests/intern.json"
},
"dependencies-comment": {
"source-map": "0.7+ releases introduce breaking changes"
},
"dependencies": {
"istanbul": "0.4.5",
"minimatch": "^3.0.4",
"plugin-error": "^1.0.1",
"source-map": "0.6.1",
"through2": "3.0.0"
},
"devDependencies": {
"eslint": "^5.9.0",
"eslint-config-airbnb-base": "^13.1.0",
"eslint-plugin-import": "^2.14.0",
"grunt": "^1.0.3",
"gulp": "^4.0.0",
"intern": "^4.3.3",
"rimraf": "^2.6.2"
}
}