-
Notifications
You must be signed in to change notification settings - Fork 1.6k
Expand file tree
/
Copy pathpackage.json
More file actions
33 lines (33 loc) · 1.2 KB
/
package.json
File metadata and controls
33 lines (33 loc) · 1.2 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
{
"name": "@msinternal/test-web-server",
"version": "0.0.0-0",
"description": "",
"private": true,
"author": "Microsoft Corporation",
"license": "MIT",
"main": "./dist/index.js",
"scripts": {
"build": "npm run --if-present build:pre && npm run build:run && npm run --if-present build:post",
"build:pre": "npm run build:pre:local-dependencies && npm run build:pre:watch",
"build:pre:local-dependencies": "../../../scripts/npm/build-local-dependencies.sh",
"build:pre:watch": "../../../scripts/npm/build-watch.sh",
"build:run": "tsup",
"bump": "vg bump prod && vg bump dev && (npm audit fix || exit 0)",
"eslint": "npm run precommit",
"postversion": "../../../scripts/npm/postversion.sh",
"precommit": "npm run precommit:eslint -- src",
"precommit:eslint": "../../../node_modules/.bin/eslint --report-unused-disable-directives --max-warnings 0",
"preversion": "../../../scripts/npm/preversion.sh",
"start": "../../../scripts/npm/notify-build.sh \"src\""
},
"pinDependencies": {},
"localDependencies": {},
"devDependencies": {
"tsup": "^8.5.1",
"typescript": "^5.9.3"
},
"dependencies": {
"selfsigned": "5.2.0",
"serve-handler": "6.1.7"
}
}