-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
42 lines (42 loc) · 1 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
{
"name": "@scipe/create-error",
"version": "1.0.0",
"description": "Create an instance of Error with a code property mostly from various CouchDB responses",
"main": "index.js",
"browser": {
"http": "./lib/http.js"
},
"prettier": {
"singleQuote": true
},
"eslintConfig": {
"extends": "@scipe"
},
"scripts": {
"format": "prettier --single-quote --write \"{lib,test}/**/*.js\"",
"test": "mocha",
"postversion": "git push && git push --tags"
},
"repository": {
"type": "git",
"url": "git+https://github.com/scienceai/create-error.git"
},
"keywords": [
"CouchDB",
"error"
],
"author": "Sebastien Ballesteros",
"license": "See README.md",
"bugs": {
"url": "https://github.com/scienceai/create-error/issues"
},
"homepage": "https://github.com/scienceai/create-error#readme",
"devDependencies": {
"@scipe/eslint-config": "^1.0.0",
"mocha": "^6.1.4",
"prettier": "^1.18.2"
},
"dependencies": {
"http-status": "^1.3.2"
}
}