-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
86 lines (86 loc) · 2.22 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
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
{
"name": "servie-http",
"version": "2.0.1",
"description": "Servie transport for HTTP(s)",
"bin": "dist/bin.js",
"main": "dist/index.js",
"typings": "dist/index.d.ts",
"files": [
"dist/"
],
"scripts": {
"prettier": "prettier --write",
"format": "npm run prettier -- \"{.,benchmarks,src/**}/*.{js,ts,json,md,yml,css}\"",
"lint": "tslint \"src/**/*.ts\" --project tsconfig.json",
"build": "rimraf dist/ && tsc",
"specs": "jest --coverage",
"test": "npm run lint && npm run build && npm run specs",
"prepare": "npm run build",
"bench:servie": "autocannon --on-port=4000 / -- node benchmarks/servie.js",
"bench:http": "autocannon --on-port=4000 / -- node benchmarks/http.js",
"bench:express": "autocannon --on-port=4000 / -- node benchmarks/express.js"
},
"repository": {
"type": "git",
"url": "git://github.com/serviejs/servie-http.git"
},
"keywords": [
"servie",
"http",
"https",
"server",
"handler"
],
"author": {
"name": "Blake Embrey",
"email": "[email protected]",
"url": "http://blakeembrey.me"
},
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/serviejs/servie-http/issues"
},
"homepage": "https://github.com/serviejs/servie-http",
"jest": {
"testEnvironment": "node",
"transform": {
".(ts|tsx)": "ts-jest"
},
"testRegex": "src/.*\\.(?:test|spec)\\.(ts|tsx|js)$",
"moduleFileExtensions": [
"ts",
"tsx",
"js"
]
},
"devDependencies": {
"@types/jest": "^24.0.13",
"@types/node": "^12.0.2",
"autocannon": "^4.0.0",
"express": "^4.16.3",
"husky": "^2.3.0",
"jest": "^24.8.0",
"lint-staged": "^8.1.7",
"parseurl": "^1.3.1",
"prettier": "^1.17.1",
"rimraf": "^2.5.4",
"servie": "^4.2.1",
"servie-route": "^2.0.1",
"throwback": "^4.0.0",
"ts-jest": "^24.0.2",
"tslint": "^5.10.0",
"tslint-config-prettier": "^1.18.0",
"tslint-config-standard": "^8.0.1",
"typescript": "^3.2.2"
},
"peerDependencies": {
"servie": "^4.2.0"
},
"dependencies": {
"@types/pump": "^1.0.1",
"arg": "^4.1.0",
"pump": "^3.0.0",
"servie-errorhandler": "^2.0.0",
"servie-finalhandler": "^2.0.0"
}
}