forked from SitePen/remap-istanbul
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
60 lines (60 loc) · 1.45 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
{
"name": "remap-istanbul",
"version": "0.9.0",
"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": "kitsonk",
"email": "[email protected]"
},
{
"name": "bryanforbes",
"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 ./src/",
"test": "tests/run.sh",
"build": "rimraf lib && babel src --out-dir ./lib --source-maps",
"prepublish": "npm run build"
},
"dependencies": {
"amdefine": "^1.0.0",
"gulp-util": "3.0.7",
"istanbul": "0.4.5",
"source-map": ">=0.5.6",
"through2": "2.0.1"
},
"devDependencies": {
"babel-cli": "^6.16.0",
"babel-core": "^6.17.0",
"babel-plugin-transform-es2015-modules-amd": "^6.18.0",
"babel-preset-es2015": "^6.16.0",
"codecov.io": "0.1.6",
"eslint": "^3.7.0",
"eslint-config-airbnb-base": "^10.0.1",
"eslint-plugin-import": "^2.0.1",
"grunt": "^1.0.1",
"gulp": "3.9.1",
"intern": "^3.3.0",
"rimraf": "^2.5.4"
}
}