UNPKG

1.63 kBJSONView Raw
1{
2 "name": "babel-plugin-__coverage__",
3 "version": "0.11.0",
4 "description": "Babel 6.x plugin to add instrument code with Istanbul-compatible `__coverage__` variable.",
5 "main": "lib/index.js",
6 "scripts": {
7 "build": "NODE_ENV=development ./node_modules/.bin/babel src -d lib",
8 "clean": "rm -rf lib; rm -rf lib-cov",
9 "mocha": "env NODE_ENV=test mocha",
10 "prepublish": "npm run clean && npm run build",
11 "test": "npm run clean && npm run build && env BABEL_DISABLE_CACHE=1 ./node_modules/.bin/babel src --plugins ./lib/index -d lib-cov && nyc npm run mocha"
12 },
13 "author": "Thai Pangsakulyanont <org.yi.dttvb@gmail.com> (http://dt.in.th/)",
14 "license": "MIT",
15 "files": [
16 "lib"
17 ],
18 "nyc": {
19 "include": [
20 "/"
21 ]
22 },
23 "devDependencies": {
24 "babel": "^6.5.2",
25 "babel-cli": "^6.5.1",
26 "babel-core": "^6.5.2",
27 "babel-preset-es2015": "^6.5.0",
28 "babel-preset-react": "^6.5.0",
29 "babel-register": "^6.5.2",
30 "codecov": "^1.0.1",
31 "istanbul": "^0.4.2",
32 "mocha": "^2.4.5",
33 "nyc": "^5.6.0",
34 "react": "^0.14.7",
35 "react-dom": "^0.14.7",
36 "standard": "^6.0.7"
37 },
38 "dependencies": {
39 "babel-helper-function-name": "^6.5.0",
40 "babel-template": "^6.5.0"
41 },
42 "repository": {
43 "type": "git",
44 "url": "git+https://github.com/dtinth/babel-plugin-__coverage__.git"
45 },
46 "keywords": [
47 "babel",
48 "coverage",
49 "istanbul",
50 "tdd",
51 "test",
52 "unit"
53 ],
54 "bugs": {
55 "url": "https://github.com/dtinth/babel-plugin-__coverage__/issues"
56 },
57 "homepage": "https://github.com/dtinth/babel-plugin-__coverage__#readme"
58}