-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
63 lines (63 loc) · 1.84 KB
/
package.json
File metadata and controls
63 lines (63 loc) · 1.84 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
{
"name": "@sugoi/server",
"version": "4.0.6",
"description": "SugoiJS server module, relays on express and inversify",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"test": "jest --config=jest.config.js --coverage --detectOpenHandles --coverageReporters=text-lcov | curl -s https://codecov.io/bash | bash",
"docs": "..\\node_modules\\.bin\\typedoc --out ..\\dist\\docs\\server --excludeNotExported --excludeProtected --excludePrivate --readme .\\README.md --mode file --hideGenerator",
"build:publish": "npm run build && npm test",
"update:patch": "npm version patch && npm publish && npm run docs",
"update:minor": "npm version minor && npm publish && npm run docs",
"update:major": "npm version major && npm publish && npm run docs",
"build": "rimraf dist && tsc"
},
"files": [
"dist/**/*"
],
"keywords": [
"sugoi",
"sugoiJS",
"@sugoi",
"@sugoiJS",
"server",
"inversify",
"decorator",
"annotation",
"express",
"guards",
"policies",
"policy"
],
"homepage": "sugoijs.com",
"bugs": {
"url": "https://github.com/sugoiJS/server/issues",
"email": "oba.sugoi@gmail.com"
},
"repository": {
"type": "git",
"url": "https://github.com/sugoiJS/server"
},
"author": "Orel Balilti",
"license": "MIT",
"dependencies": {
"@sugoi/core": "^4.0.6",
"express": "^4.17.1",
"helmet": "^3.21.2",
"inversify-express-utils": "^6.3.2"
},
"devDependencies": {
"@sugoi/orm": "^4.0.1",
"@types/express": "^4.17.8",
"@types/helmet": "0.0.48",
"@types/jest": "^26.0.14",
"@types/node": "^14.11.2",
"axios": "^0.21.1",
"jest": "^26.4.2",
"moxios": "^0.4.0",
"rimraf": "^3.0.2",
"supertest": "^4.0.2",
"ts-jest": "^26.4.0"
}
}