-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
30 lines (30 loc) · 840 Bytes
/
package.json
File metadata and controls
30 lines (30 loc) · 840 Bytes
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
{
"devDependencies": {
"@types/jest": "^24.0.6",
"@types/node": "^11.9.5",
"gts": "^0.9.0",
"jest": "^24.1.0",
"typescript": "~3.1.0"
},
"name": "ts-html-parser",
"version": "0.0.1",
"description": "A blazing fast HTML parser; on TypeScript with zero dependencies",
"main": "dst/index.js",
"repository": "https://github.com/vitkarpov/ts-html-parser",
"author": {
"name": "Viktor Karpov",
"email": "viktor.s.karpov@gmail.com"
},
"license": "MIT",
"scripts": {
"check": "gts check",
"clean": "gts clean",
"compile": "tsc -p .",
"fix": "gts fix",
"prepare": "yarn run compile",
"pretest": "yarn run compile",
"posttest": "yarn run check",
"test": "jest e2e/*.test.js dst/*.test.js --collect-coverage",
"unit": "yarn run compile && jest dst/*.test.js"
}
}