-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
49 lines (49 loc) · 1.19 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
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
{
"name": "flvr",
"description": "Add some flavor to your errors.",
"author": "Jarid Margolin <jaridmargolin@gmail.com>",
"version": "0.1.4",
"homepage": "https://github.com/jaridmargolin/flvr",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/jaridmargolin/flvr"
},
"bugs": {
"url": "https://github.com/jaridmargolin/flvr/issues"
},
"scripts": {
"test": "standard && mocha",
"inspect-test": "inspect _mocha --no-timeouts",
"coverage": "nyc --reporter=lcov --reporter=text npm test",
"coveralls": "cat ./coverage/lcov.info | coveralls"
},
"main": "lib/index.js",
"bin": {
"flvr": "lib/index.js"
},
"dependencies": {
"chalk": "^2.0.0",
"codeframe": "0.0.1",
"figures": "^2.0.0",
"indent-string": "^3.0.0",
"load-plugins": "^2.1.1",
"lodash": "^4.15.0",
"stack-chain": "^1.3.7",
"stack-utils": "^1.0.0",
"strip-ansi": "^5.0.0"
},
"devDependencies": {
"chai": "^4.1.0",
"coveralls": "^3.0.0",
"inspect-process": "^0.5.0",
"mocha": "^6.0.0",
"nyc": "^13.2.0",
"standard": "^11.0.0"
},
"standard": {
"ignore": [
"test/fixtures/syntax.js"
]
}
}