forked from yortus/http-schemas
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
60 lines (60 loc) · 1.64 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
{
"name": "http-schemas",
"version": "0.8.3",
"description": "Strongly-typed HTTP schemas",
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"scripts": {
"build": "tsc",
"test": "mocha -r ts-node/register \"src/**/*.test.ts\"",
"prepublishOnly": "npm run build && npm test"
},
"repository": {
"type": "git",
"url": "https://github.com/yortus/http-schemas.git"
},
"keywords": [],
"author": {
"name": "Troy Gerwien",
"email": "[email protected]",
"url": "http://github.com/yortus/"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/yortus/http-schemas/issues"
},
"files": [
"dist/",
"client.d.ts",
"client.js",
"server.d.ts",
"server.js"
],
"devDependencies": {
"@types/body-parser": "^1.19.0",
"@types/chai": "^4.2.9",
"@types/chai-as-promised": "^7.1.2",
"@types/compression": "^1.0.1",
"@types/cookie-parser": "^1.4.2",
"@types/express": "^4.17.6",
"@types/express-useragent": "^1.0.0",
"@types/mocha": "^7.0.1",
"body-parser": "^1.19.0",
"chai": "^4.2.0",
"chai-as-promised": "^7.1.1",
"compression": "^1.7.4",
"cookie-parser": "^1.4.4",
"express-useragent": "^1.0.13",
"install": "^0.13.0",
"mocha": "^7.0.1",
"npm": "^6.14.4",
"ts-node": "^8.6.2",
"typescript": "^3.7.5"
},
"dependencies": {
"axios": "^0.19.0",
"express": "^4.17.1",
"path-to-regexp": "^4.0.2",
"rtti": "^0.3.3"
}
}