1 | {
|
2 | "name": "istanbul-lib-instrument",
|
3 | "version": "1.1.4",
|
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/*js",
|
9 | "test": "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.11.3",
|
17 | "babel-template": "^6.9.0",
|
18 | "babel-traverse": "^6.9.0",
|
19 | "babel-types": "^6.10.2",
|
20 | "babylon": "^6.8.1",
|
21 | "istanbul-lib-coverage": "^1.0.0"
|
22 | },
|
23 | "devDependencies": {
|
24 | "babel-cli": "^6.3.17",
|
25 | "babel-plugin-istanbul": "^2.0.2",
|
26 | "babel-preset-es2015": "^6.3.13",
|
27 | "babel-register": "^6.16.3",
|
28 | "chai": "^3.0.0",
|
29 | "clone": "^2.0.0",
|
30 | "coveralls": "^2.11.4",
|
31 | "documentation": "^4.0.0-beta9",
|
32 | "js-yaml": "^3.3.1",
|
33 | "jshint": "^2.8.0",
|
34 | "mocha": "^3.1.2",
|
35 | "nopt": "^3.0.6",
|
36 | "nyc": "^8.3.1",
|
37 | "standard-version": "^3.0.0"
|
38 | },
|
39 | "nyc": {
|
40 | "include": [
|
41 | "src/**/*.js"
|
42 | ],
|
43 | "require": [
|
44 | "babel-register"
|
45 | ],
|
46 | "sourceMap": false,
|
47 | "instrument": false
|
48 | },
|
49 | "license": "BSD-3-Clause",
|
50 | "bugs": {
|
51 | "url": "https://github.com/istanbuljs/istanbul-lib-instrument/issues"
|
52 | },
|
53 | "homepage": "https://github.com/istanbuljs/istanbul-lib-instrument",
|
54 | "repository": {
|
55 | "type": "git",
|
56 | "url": "git@github.com:istanbuljs/istanbul-lib-instrument.git"
|
57 | },
|
58 | "keywords": [
|
59 | "coverage",
|
60 | "istanbul",
|
61 | "js",
|
62 | "instrumentation"
|
63 | ]
|
64 | }
|