-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
44 lines (44 loc) · 1.18 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
{
"name": "@kedoska/resty",
"version": "0.0.5",
"description": "Quick and dirty JSON CRUD REST API for your express servers",
"main": "index.js",
"types": "index.d.ts",
"scripts": {
"test": "jest --config jestconfig.json",
"build": "tsc",
"format": "prettier --write \"src/**/*.ts\"",
"lint": "tslint -p tsconfig.json"
},
"repository": {
"type": "git",
"url": "git+https://github.com/kedoska/resty.git"
},
"author": "Marco Casula<[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/kedoska/resty/issues"
},
"homepage": "https://www.npmjs.com/package/@kedoska/resty",
"devDependencies": {
"@types/express": "^4.17.6",
"@types/jest": "^25.2.2",
"@types/supertest": "^2.0.10",
"codecov": "^3.6.5",
"express": "^4.17.1",
"jest": "^26.0.1",
"jest-fetch-mock": "^3.0.3",
"method-override": "^3.0.0",
"prettier": "^2.0.5",
"supertest": "^4.0.2",
"ts-jest": "^26.0.0",
"tslint": "^6.1.2",
"tslint-config-prettier": "^1.18.0",
"typescript": "^3.9.2",
"whatwg-fetch": "^3.0.0"
},
"peerDependencies": {
"express": "^4.17.1",
"method-override": "^3.0.0"
}
}