-
Notifications
You must be signed in to change notification settings - Fork 7
/
package.json
45 lines (45 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
{
"name": "istanbul-lib-source-maps",
"version": "1.1.0",
"description": "Source maps support for istanbul",
"author": "Krishnan Anantheswaran <[email protected]>",
"main": "index.js",
"scripts": {
"fast": "mocha test/",
"pretest": "jshint index.js lib/ test/",
"test": "istanbul cover --include-all-sources --print=both _mocha -- test/",
"xposttest": "istanbul check-coverage --statements 95 --branches 80",
"release": "standard-version"
},
"dependencies": {
"istanbul-lib-coverage": "^1.0.0-alpha.0",
"mkdirp": "^0.5.1",
"rimraf": "^2.4.4",
"source-map": "^0.5.3"
},
"devDependencies": {
"babel-core": "^6.2.1",
"chai": "^3.4.1",
"istanbul": "^0.4.0",
"jshint": "^2.8.0",
"mocha": "^3.2.0",
"standard-version": "^4.0.0",
"ts-node": "^2.0.0"
},
"license": "BSD-3-Clause",
"bugs": {
"url": "https://github.com/istanbuljs/istanbul-lib-source-maps/issues"
},
"homepage": "https://github.com/istanbuljs/istanbul-lib-source-maps#readme",
"repository": {
"type": "git",
"url": "git+ssh://[email protected]/istanbuljs/istanbul-lib-source-maps.git"
},
"keywords": [
"istanbul",
"sourcemaps",
"sourcemap",
"source",
"maps"
]
}