-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
43 lines (43 loc) · 1.15 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
{
"name": "@pomgui/rest",
"version": "0.1.2",
"description": "Library to implement REST services in typescript using decorators",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"prepare": "tsc",
"test": "tsc && istanbul cover -- jasmine --config=spec/support/jasmine.json",
"postversion": "git push && git push --tags"
},
"bin": {},
"keywords": [],
"author": "Wilfredo <[email protected]> (https://github.com/pomgui)",
"license": "MIT",
"dependencies": {
"@pomgui/database": "^0.1.0",
"@pomgui/rest-lib": "^0.1.0"
},
"devDependencies": {
"@types/express": "^4.17.1",
"@types/jasmine": "^3.4.1",
"@types/mysql": "^2.15.15",
"@types/node": "^14.6.4",
"@types/supertest": "^2.0.8",
"express": "^4.17.1",
"istanbul": "^0.4.5",
"jasmine": "^3.5.0",
"jasmine-spec-reporter": "^5.0.2",
"supertest": "^4.0.2",
"ts-node": "^9.0.0",
"tslib": "^2.0.1",
"typescript": "^4.0.2"
},
"peerDependencies": {
"express": "^4.17.1",
"@pomgui/rest-codegen": "^0.1.0"
},
"repository": {
"type": "git",
"url": "https://github.com/pomgui/rest.git"
}
}