-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
34 lines (34 loc) · 1.04 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
{
"name": "adana-dump",
"version": "0.1.0",
"description": "Output adana coverage information after node process ends.",
"repository": "adana-coverage/adana-dump",
"license": "CC0-1.0",
"main": "index.js",
"keywords": [
"coverage",
"adana"
],
"scripts": {
"lint": "./node_modules/.bin/eslint --ignore-path .gitignore .",
"prepublish": "./node_modules/.bin/babel -s inline -d dist src/",
"spec": "NODE_ENV=test ./node_modules/.bin/_mocha --compilers js:babel-core/register -R spec test/spec",
"test": "npm run lint && npm run spec"
},
"devDependencies": {
"babel-cli": "^6.0.2",
"babel-plugin-syntax-object-rest-spread": "^6.0.2",
"babel-plugin-transform-object-rest-spread": "^6.0.2",
"babel-preset-es2015": "^6.0.11",
"chai": "^3.4.0",
"eslint": "^1.10.3",
"eslint-config-metalab": "^1.0.0-rc.4",
"eslint-plugin-filenames": "^0.2.0",
"eslint-plugin-import": "^0.11.0",
"eslint-plugin-react": "^3.11.2",
"mocha": "^2.2.5"
},
"dependencies": {
"mkdirp": "^0.5.1"
}
}