-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
44 lines (44 loc) · 1.06 KB
/
package.json
File metadata and controls
44 lines (44 loc) · 1.06 KB
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": "view-packages-api",
"version": "1.0.0",
"description": "REST API for checking which packages are installed in Ubuntu/Debian",
"main": "build/server.js",
"scripts": {
"test": "jest",
"test-watch": "jest --watch",
"prod": "tsc && node ./build/server.js",
"lint": "tslint -c tslint.json src/**/**.ts"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Grenguar/view-packages-api.git"
},
"keywords": [
"typescript",
"express",
"ts",
"api",
"ubuntu",
"debian"
],
"author": "Igor Soroka",
"license": "ISC",
"bugs": {
"url": "https://github.com/Grenguar/view-packages-api/issues"
},
"homepage": "https://github.com/Grenguar/view-packages-api#readme",
"dependencies": {
"express": "^4.17.1"
},
"devDependencies": {
"@types/express": "^4.17.0",
"@types/jest": "^24.0.17",
"@types/node": "^12.7.2",
"@types/supertest": "^2.0.8",
"jest": "^24.9.0",
"supertest": "^4.0.2",
"ts-jest": "^24.0.2",
"tslint": "^5.19.0",
"typescript": "^3.5.3"
}
}