-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
36 lines (36 loc) · 1.09 KB
/
package.json
File metadata and controls
36 lines (36 loc) · 1.09 KB
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
35
36
{
"name": "esnext-coverage-analytics",
"version": "0.0.6",
"description": "Analytics package for esnext-coverage",
"main": "dist/index.js",
"keywords": [
"esnext-coverage",
"coverage",
"esnext"
],
"scripts": {
"lint": "eslint {src,test}/**/*.js",
"test": "mocha --slow 200 -r babel-register test/spec/*.spec.js",
"transpile": "babel src --out-dir dist",
"prepublish": "npm run lint && npm test && npm run transpile"
},
"repository": {
"type": "git",
"url": "https://github.com/esnext-coverage/esnext-coverage-analytics.git"
},
"author": "Oleg Sklyanchuk <sklyanchuk@gmail.com> (http://olegskl.com)",
"license": "MIT",
"bugs": {
"url": "https://github.com/esnext-coverage/esnext-coverage-analytics/issues"
},
"homepage": "https://github.com/esnext-coverage/esnext-coverage-analytics",
"devDependencies": {
"babel-cli": "^6.24.1",
"babel-plugin-transform-es2015-shorthand-properties": "^6.24.1",
"babel-preset-env": "^1.4.0",
"chai": "^3.5.0",
"eslint": "^3.19.0",
"eslint-config-meetic": "^4.0.0",
"mocha": "^3.2.0"
}
}