-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
67 lines (67 loc) · 1.65 KB
/
package.json
File metadata and controls
67 lines (67 loc) · 1.65 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
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
{
"name": "express-server-adapter",
"version": "0.0.2",
"description": "",
"private": false,
"main": "./dist/main.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"build": "tsc"
},
"keywords": [
"express",
"adapter",
"server-port"
],
"repository": {
"type": "git",
"url": "git+https://github.com/ctrl-space-org/express-server-adapter.git"
},
"author": "Leonardo Lucas dos Santos",
"license": "ISC",
"bugs": {
"url": "https://github.com/ctrl-space-org/express-server-adapter/issues"
},
"homepage": "https://github.com/ctrl-space-org/express-server-adapter#readme",
"dependencies": {
"express": "^4.16.4",
"inversify": "^5.0.1",
"reflect-metadata": "^0.1.13",
"server-port": "^0.0.13"
},
"devDependencies": {
"@types/express": "^4.16.1",
"@types/jest": "^24.0.11",
"@types/supertest": "^2.0.7",
"@typescript-eslint/eslint-plugin": "^1.7.0",
"@typescript-eslint/parser": "^1.7.0",
"eslint": "^5.16.0",
"eslint-config-prettier": "^4.2.0",
"eslint-config-standard": "^12.0.0",
"eslint-plugin-import": "^2.17.2",
"eslint-plugin-node": "^8.0.1",
"eslint-plugin-prettier": "^3.0.1",
"eslint-plugin-promise": "^4.1.1",
"eslint-plugin-standard": "^4.0.0",
"jest": "^24.7.1",
"prettier": "^1.17.0",
"supertest": "^4.0.2",
"ts-jest": "^24.0.1",
"ts-node": "^8.0.3",
"typescript": "^3.4.1"
},
"jest": {
"transform": {
"^.+\\.ts$": "ts-jest"
},
"testRegex": "\\.spec\\.ts",
"moduleFileExtensions": [
"ts",
"tsx",
"js",
"jsx",
"json",
"node"
]
}
}