UNPKG

1.17 kBJSONView Raw
1{
2 "name": "browserify-istanbul",
3 "version": "3.0.1",
4 "description": "A browserify transform for the istanbul code coverage tool",
5 "main": "index.js",
6 "directories": {
7 "test": "test"
8 },
9 "scripts": {
10 "lint": "eslint index.js test/*.js",
11 "pretest": "npm run lint",
12 "test": "nyc --reporter=text --reporter=lcov mocha"
13 },
14 "pre-commit": [
15 "lint",
16 "test"
17 ],
18 "repository": {
19 "type": "git",
20 "url": "git://github.com/devongovett/browserify-istanbul.git"
21 },
22 "keywords": [
23 "browserify",
24 "coverage",
25 "istanbul"
26 ],
27 "author": "Devon Govett <devongovett@gmail.com>",
28 "license": "MIT",
29 "bugs": {
30 "url": "https://github.com/devongovett/browserify-istanbul/issues"
31 },
32 "homepage": "https://github.com/devongovett/browserify-istanbul",
33 "dependencies": {
34 "istanbul-lib-instrument": "^1.8.0",
35 "minimatch": "^3.0.4",
36 "object-assign": "^4.1.1",
37 "through": "^2.3.8"
38 },
39 "devDependencies": {
40 "browserify": "^14.4.0",
41 "coveralls": "^3.0.0",
42 "eslint": "^4.8.0",
43 "eslint-plugin-mocha": "^4.11.0",
44 "mocha": "^4.0.1",
45 "nyc": "^11.2.1",
46 "pre-commit": "^1.2.2"
47 }
48}