-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
36 lines (36 loc) · 1.35 KB
/
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
32
33
34
35
36
{
"name": "html-parser-v2",
"version": "2.0.0",
"description": "",
"main": "index.js",
"scripts": {
"build": "tsc",
"start": "mkdir -p tmp && npm run build && node ./dist/index.js ./test/input-page.html",
"dev": "ts-node-dev --respawn --transpile-only ./src/index.ts ./test/input-page.html",
"lint": "eslint src/",
"prettier": "prettier --parser typescript --write \"src/**/*.ts\"",
"test": "jest --config jest.config.unit.json",
"test-watch": "jest --config jest.config.unit.json --watch",
"test-cov": "jest --clearCache && jest --config jest.config.unit.json --coverage",
"test-e2e": "npm start && jest --config jest.config.e2e.json ./test/index.spec.ts"
},
"keywords": [],
"author": "",
"license": "ISC",
"devDependencies": {
"@types/jest": "^26.0.15",
"@types/node": "^14.14.3",
"@typescript-eslint/eslint-plugin": "^4.5.0",
"@typescript-eslint/parser": "^4.5.0",
"eslint": "^7.12.0",
"eslint-config-airbnb-typescript": "^12.0.0",
"eslint-config-prettier": "^6.14.0",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-jest": "^24.1.0",
"jest": "^26.6.1",
"prettier": "^2.1.2",
"ts-jest": "^26.4.2",
"ts-node-dev": "^1.0.0",
"typescript": "^4.0.3"
}
}