-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
42 lines (42 loc) · 1.25 KB
/
package.json
File metadata and controls
42 lines (42 loc) · 1.25 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
37
38
39
40
41
42
{
"name": "esnext-coverage-format-text",
"version": "0.0.6",
"description": "esnext-coverage output formatter to human-readable text",
"main": "dist/index.js",
"scripts": {
"transpile": "babel src --out-dir dist",
"lint": "eslint --ignore-path .gitignore .",
"spec": "mocha --slow 200 -r esnext-coverage test/spec/**/*.spec.js",
"test": "npm run lint && npm run spec",
"prepublish": "npm run test && npm run transpile"
},
"repository": {
"type": "git",
"url": "https://github.com/esnext-coverage/esnext-coverage-format-text.git"
},
"keywords": [
"coverage",
"esnext-coverage",
"text"
],
"author": "Oleg Sklyanchuk <sklyanchuk@gmail.com> (http://olegskl.com)",
"license": "MIT",
"bugs": {
"url": "https://github.com/esnext-coverage/esnext-coverage-format-text/issues"
},
"homepage": "https://github.com/esnext-coverage/esnext-coverage-format-text",
"dependencies": {
"chalk": "^1.1.3",
"esnext-coverage-analytics": "^0.0.6"
},
"devDependencies": {
"babel-cli": "^6.24.1",
"babel-core": "^6.24.1",
"babel-preset-es2015": "^6.24.1",
"chai": "^3.5.0",
"eslint": "^3.19.0",
"eslint-config-meetic": "^4.0.0",
"esnext-coverage": "^0.0.8",
"mocha": "^3.2.0"
}
}