forked from goto-bus-stop/browserify-istanbul
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
47 lines (47 loc) · 1.1 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
{
"name": "@airtap/browserify-istanbul",
"version": "4.0.0",
"description": "A browserify transform for the istanbul code coverage tool",
"main": "index.js",
"directories": {
"test": "test"
},
"scripts": {
"lint": "eslint index.js test/*.js",
"pretest": "npm run lint",
"test": "nyc --reporter=text --reporter=lcov mocha"
},
"pre-commit": [
"lint",
"test"
],
"repository": {
"type": "git",
"url": "git://github.com/airtap/browserify-istanbul.git"
},
"keywords": [
"browserify",
"coverage",
"istanbul"
],
"author": "Devon Govett <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/airtap/browserify-istanbul/issues"
},
"homepage": "https://github.com/airtap/browserify-istanbul",
"dependencies": {
"istanbul-lib-instrument": "^4.0.0",
"minimatch": "^3.0.4",
"through2": "^3.0.1"
},
"devDependencies": {
"browserify": "^16.5.0",
"coveralls": "^3.0.0",
"eslint": "^6.8.0",
"eslint-plugin-mocha": "^6.2.2",
"mocha": "^7.0.0",
"nyc": "^15.0.0",
"pre-commit": "^1.2.2"
}
}