-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
31 lines (31 loc) · 913 Bytes
/
package.json
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
{
"name": "@liulinboyi/htmlparser",
"main": "./dist/index.js",
"files": [
"dist"
],
"devDependencies": {
"@playwright/test": "^1.13.1",
"@types/node": "^14.14.20",
"cross-env": "^7.0.3",
"playwright": "^1.13.1",
"prettier": "2.2.1",
"pretty-quick": "3.1.0",
"request": "^2.88.2",
"request-promise": "^4.2.6",
"ts-lint": "4.5.1",
"ts-loader": "8.0.15",
"ts-node": "^9.1.1",
"tslint": "5.20.1",
"tslint-config-prettier": "1.18.0",
"typescript": "^4.1.3"
},
"scripts": {
"test-ts": "ts-node ./mycheck/check.ts",
"build": "rm -rf ./dist/ && tsc --project ./tsconfig.json",
"build-es": "rm -rf ./dist-esmodule/ && tsc --project ./tsconfig-esmodule.json && node ./script/addSuffixJs.js",
"build-all": "npm run build && npm run build-es",
"test": "playwright test testall.spec.ts",
"test-all": "node test-server.js"
}
}