-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
42 lines (42 loc) · 852 Bytes
/
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
35
36
37
38
39
40
41
42
{
"name": "highlight-error",
"version": "1.0.2",
"main": "lib/index.js",
"typings": "index.d.ts",
"devDependencies": {
"babel-cli": "^6.24.1",
"babel-preset-es2015": "^6.24.1",
"mocha": "^3.4.2",
"nyc": "^11.0.2"
},
"scripts": {
"build": "babel src --out-dir lib",
"test": "nyc mocha test/index.js --reporter dot",
"prepublish": "npm test && npm run build"
},
"nyc": {
"check-coverage": true,
"lines": 100,
"statements": 100,
"functions": 100,
"branches": 100,
"sourceMap": true,
"include": [
"src/**/*.js"
],
"exclude": [
"test/**/*.js",
"node_modules/**/*"
],
"reporter": [
"html"
],
"cache": true,
"all": true
},
"dependencies": {
"chalk": "^1.1.3",
"lines-and-columns": "^1.1.6",
"lodash": "^4.17.4"
}
}