-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
38 lines (38 loc) · 909 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
{
"name": "super-errors",
"version": "2.0.0",
"description": "Error types and error handling for use in lambdas.",
"main": "index.js",
"browser": {
"src/capture-stack.js": "src/capture-stack-client.js",
"src/inherits.js": "src/inherits-client.js"
},
"scripts": {
"test": "mocha",
"coverage": "istanbul cover node_modules/mocha/bin/_mocha -- -u exports -R spec"
},
"keywords": [
"lambda",
"error",
"errors"
],
"author": "Joshua Sullivan",
"license": "MIT",
"devDependencies": {
"browserify": "^13.3.0",
"chai": "^3.5.0",
"dirty-chai": "^1.2.2",
"gulp": "^3.9.1",
"gulp-rename": "^1.2.2",
"gulp-sourcemaps": "^2.4.0",
"gulp-uglify": "^2.0.0",
"istanbul": "^0.4.5",
"mocha": "^2.5.3",
"pump": "^1.0.1",
"vinyl-buffer": "^1.0.0",
"vinyl-source-stream": "^1.1.0"
},
"directories": {
"test": "test"
}
}