-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
47 lines (47 loc) · 1.11 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
{
"name": "exception-formatter",
"version": "0.0.0-semantic-release",
"author": "Jason Walton <[email protected]> (https://github.com/jwalton)",
"license": "MIT",
"keywords": [
"error",
"exception",
"format",
"pretty"
],
"repository": {
"type": "git",
"url": "https://github.com/benbria/exception-formatter.git"
},
"dependencies": {
"colors": "1.4.0"
},
"devDependencies": {
"@benbria/semantic-release-config": "^1.0.0",
"chai": "^4.2.0",
"coffee-script": "^1.8.0",
"coveralls": "^3.0.3",
"eslint": "^5.16.0",
"eslint-config-benbria": "^4.0.0",
"eslint-plugin-import": "^2.17.2",
"eslint-plugin-promise": "^4.1.1",
"istanbul": "^0.4.0",
"longjohn": "^0.2.4",
"mocha": "^6.1.4",
"nyc": "^14.1.0",
"semantic-release": "^17.0.0"
},
"main": "./src/exceptionFormatter.js",
"types": "./exceptionFormatter.d.ts",
"files": [
"src/**/*",
"exceptionFormatter.d.ts"
],
"scripts": {
"test": "nyc mocha 'test/**/*.js'",
"semantic-release": "semantic-release"
},
"engines": {
"node": ">=0.10.1"
}
}