UNPKG

1.74 kBJSONView Raw
1{
2 "name": "istanbul-lib-instrument",
3 "version": "1.1.0",
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 "v10-test": "mocha --compilers js:babel-core/register --recursive test/",
10 "fast": "mocha --harmony --compilers js:babel-core/register --recursive test/",
11 "pretest": "jshint src/ test/",
12 "test": "./test.sh",
13 "posttest": "node ./node_modules/istanbul/lib/cli.js check-coverage --statements 90 --branches 80",
14 "prepublish": "npm test && npm run release",
15 "version": "standard-version"
16 },
17 "dependencies": {
18 "babel-generator": "^6.11.3",
19 "babel-template": "^6.9.0",
20 "babel-traverse": "^6.9.0",
21 "babel-types": "^6.10.2",
22 "babylon": "^6.8.1",
23 "istanbul-lib-coverage": "^1.0.0-alpha.4"
24 },
25 "devDependencies": {
26 "babel-cli": "^6.3.17",
27 "babel-core": "^6.3.21",
28 "babel-preset-es2015": "^6.3.13",
29 "chai": "^3.0.0",
30 "clone": "^1.0.2",
31 "coveralls": "^2.11.4",
32 "documentation": "^4.0.0-beta5",
33 "istanbul": "^1.0.0-alpha.2",
34 "js-yaml": "^3.3.1",
35 "jshint": "^2.8.0",
36 "mocha": "^2.2.5",
37 "nopt": "^3.0.6",
38 "standard-version": "^2.4.0"
39 },
40 "license": "BSD-3-Clause",
41 "bugs": {
42 "url": "https://github.com/istanbuljs/istanbul-lib-instrument/issues"
43 },
44 "homepage": "https://github.com/istanbuljs/istanbul-lib-instrument",
45 "repository": {
46 "type": "git",
47 "url": "git@github.com:istanbuljs/istanbul-lib-instrument.git"
48 },
49 "keywords": [
50 "coverage",
51 "istanbul",
52 "js",
53 "instrumentation"
54 ]
55}