-
Notifications
You must be signed in to change notification settings - Fork 7
/
package.json
41 lines (41 loc) · 1.24 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
{
"name": "theodore",
"version": "1.5.2",
"description": "http framework",
"main": "index.js",
"dependencies": {
"fast-json-parse": "^1.0.3",
"fast-safe-stringify": "^2.0.3",
"server-router": "^6.0.0",
"turbo-http": "^0.1.1"
},
"devDependencies": {
"bent": "^1.1.0",
"standard": "^11.0.0",
"standard-version": "^8.0.1",
"tap": "^14.2.2",
"weallbehave": "^1.2.0",
"weallcontribute": "^1.0.8"
},
"scripts": {
"cover": "tap test/*.js --coverage-report=html",
"release": "npm test && standard-version && git push origin master && npm publish",
"test": "tap test/*.js --100 && standard",
"update-coc": "weallbehave -o . && git add CODE_OF_CONDUCT.md && git commit -m 'docs(coc): updated CODE_OF_CONDUCT.md'",
"update-contrib": "weallcontribute -o . && git add CONTRIBUTING.md && git commit -m 'docs(contributing): updated CONTRIBUTING.md'"
},
"repository": {
"type": "git",
"url": "git+https://github.com/emkay/theodore.git"
},
"keywords": [],
"author": {
"name": "Michael Matuzak",
"email": "[email protected]"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/emkay/theodore/issues"
},
"homepage": "https://github.com/emkay/theodore#readme"
}