This repository was archived by the owner on Jul 5, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
52 lines (52 loc) · 1.29 KB
/
package.json
File metadata and controls
52 lines (52 loc) · 1.29 KB
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
50
51
52
{
"name": "netiam-errors",
"version": "1.0.0",
"description": "A collection of HTTP errors",
"main": "lib/index.js",
"scripts": {
"build": "./bin/build",
"clean": "./bin/clean",
"lint": "./bin/lint",
"semantic-release": "semantic-release pre && npm publish && semantic-release post",
"start": "npm run watch",
"test": "npm run test:unit",
"test:unit": "mocha",
"test:coverage": "istanbul cover _mocha --report lcovonly -- -R spec",
"watch": "./bin/watch"
},
"repository": {
"type": "git",
"url": "ssh://git@github.com/netiam/errors.git"
},
"keywords": [
"HTTP",
"Error",
"Status"
],
"author": "Hannes Moser <hannes@impossiblearts.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/netiam/errors/issues"
},
"homepage": "https://github.com/netiam/errors#readme",
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-preset-es2015-node5": "^1.2.0",
"codeclimate-test-reporter": "0.5.1",
"eslint": "^5.7.0",
"istanbul": "0.4.5",
"lodash": "4.17.11",
"mkdirp": "0.5.1",
"mocha": "5.0.0",
"rimraf": "2.6.2",
"semantic-release": "15.10.5",
"should": "13.2.1"
},
"dependencies": {
"es6-error": "4.1.1",
"lodash": "^4.17.5"
},
"publicConfig": {
"tag": "next"
}
}