UNPKG

1.85 kBJSONView Raw
1{
2 "name": "istanbul-lib-instrument",
3 "version": "1.4.2",
4 "description": "Core istanbul API for JS code coverage",
5 "author": "Krishnan Anantheswaran <kananthmail-github@yahoo.com>",
6 "main": "dist/index.js",
7 "scripts": {
8 "release": "babel src --out-dir dist && documentation build -f md -o api.md src",
9 "test": "cross-env NODE_ENV=test nyc --check-coverage --statements 90 --branches 80 mocha --recursive test/",
10 "pretest": "jshint src/ test/",
11 "prepublish": "npm test && npm run release",
12 "version": "standard-version",
13 "coverage": "nyc report --reporter=text-lcov | coveralls"
14 },
15 "dependencies": {
16 "babel-generator": "^6.18.0",
17 "babel-template": "^6.16.0",
18 "babel-traverse": "^6.18.0",
19 "babel-types": "^6.18.0",
20 "babylon": "^6.13.0",
21 "istanbul-lib-coverage": "^1.0.0",
22 "semver": "^5.3.0"
23 },
24 "devDependencies": {
25 "babel-cli": "^6.3.17",
26 "babel-plugin-istanbul": "^2.0.3",
27 "babel-preset-es2015": "^6.3.13",
28 "babel-register": "^6.16.3",
29 "chai": "^3.0.0",
30 "clone": "^2.0.0",
31 "coveralls": "^2.11.4",
32 "cross-env": "^2.0.1",
33 "documentation": "^4.0.0-beta9",
34 "js-yaml": "^3.3.1",
35 "jshint": "^2.8.0",
36 "mocha": "^3.1.2",
37 "nopt": "^3.0.6",
38 "nyc": "^8.3.1",
39 "standard-version": "^3.0.0"
40 },
41 "nyc": {
42 "include": [
43 "src/**/*.js"
44 ],
45 "require": [
46 "babel-register"
47 ],
48 "sourceMap": false,
49 "instrument": false
50 },
51 "license": "BSD-3-Clause",
52 "bugs": {
53 "url": "https://github.com/istanbuljs/istanbul-lib-instrument/issues"
54 },
55 "homepage": "https://github.com/istanbuljs/istanbul-lib-instrument",
56 "repository": {
57 "type": "git",
58 "url": "git@github.com:istanbuljs/istanbul-lib-instrument.git"
59 },
60 "keywords": [
61 "coverage",
62 "istanbul",
63 "js",
64 "instrumentation"
65 ]
66}