forked from maxkueng/chromium-net-errors
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
42 lines (42 loc) · 975 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": "chromium-net-errors",
"version": "1.0.3",
"description": "Chromium network errors for Chromium-based JavaScript environments",
"keywords": [
"chromium",
"atom-shell",
"electron",
"error"
],
"main": "index.js",
"files": [
"errors.json",
"index.js",
"LICENSE"
],
"repository": {
"type": "git",
"url": "git://github.com/maxkueng/chromium-net-errors.git"
},
"scripts": {
"generate": "node tools/generate.js",
"prepublish": "npm run generate",
"pretest": "npm run generate",
"test": "mocha --ui bdd --reporter spec"
},
"author": "Max Kueng <me@maxkueng.com> (http://maxkueng.com/)",
"licenses": [
{
"type": "MIT",
"url": "https://github.com/maxkueng/chromium-net-errors/raw/master/LICENSE"
}
],
"devDependencies": {
"chai": "^2.2.0",
"change-case": "^2.3.0",
"got": "^2.8.1",
"mocha": "^2.2.4",
"split": "^0.3.3",
"through2": "^0.6.5"
}
}