-
Notifications
You must be signed in to change notification settings - Fork 12
Expand file tree
/
Copy pathpackage.json
More file actions
51 lines (51 loc) · 1.56 KB
/
package.json
File metadata and controls
51 lines (51 loc) · 1.56 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
{
"name": "@alfalab/scripts-server",
"version": "1.3.0",
"main": "./build/index.js",
"typings": "./build/index.d.ts",
"license": "MPL-2.0",
"repository": {
"type": "git",
"url": "git+https://github.com/core-ds/arui-scripts.git"
},
"bugs": {
"url": "https://github.com/core-ds/arui-scripts/issues"
},
"homepage": "https://github.com/core-ds/arui-scripts/tree/master/packages/arui-scripts-server#readme",
"scripts": {
"build": "tsc --project tsconfig.json",
"test": "jest",
"lint:scripts": "arui-presets-lint scripts",
"format": "arui-presets-lint format",
"format:check": "arui-presets-lint format:check",
"lint": "yarn lint:scripts && yarn format:check",
"lint:fix": "yarn lint:scripts --fix && yarn format",
"audit": "yarn npm audit --severity high --environment production"
},
"devDependencies": {
"@alfalab/scripts-modules": "workspace:*",
"@types/express": "^4.17.17",
"@types/hapi16": "npm:@types/hapi@16.1.12",
"@types/hapi20": "npm:@types/hapi__hapi@20",
"express": "^4.20.0",
"jest": "28.1.3",
"ts-jest": "28.0.8",
"typescript": "6.0.2"
},
"peerDependencies": {
"@hapi/hapi": ">20.0.0",
"express": "^4.0.0",
"hapi": "^16.0.0"
},
"peerDependenciesMeta": {
"@hapi/hapi": {
"optional": true
},
"express": {
"optional": true
},
"hapi": {
"optional": true
}
}
}