-
Notifications
You must be signed in to change notification settings - Fork 21
Expand file tree
/
Copy pathpackage.json
More file actions
38 lines (38 loc) · 932 Bytes
/
package.json
File metadata and controls
38 lines (38 loc) · 932 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
31
32
33
34
35
36
37
38
{
"name": "@starptech/webparser",
"version": "0.10.0",
"description": "Optimized html parser for HTML5 Web Components.",
"main": "./dist/public_api.js",
"scripts": {
"build-ts": "tsc",
"watch-ts": "tsc -w",
"test": "jest --forceExit --detectOpenHandles",
"test-coverage": "yarn run test -- --coverage",
"tslint": "tslint -c tslint.json -p tsconfig.json",
"prepublish": "yarn run build-ts"
},
"files": [
"dist"
],
"keywords": [
"formatter",
"webparser",
"parser",
"htmlparser",
"html5"
],
"author": "Dustin Deus <deusdustin@gmail.com> (http://www.starptech.de)",
"license": "MIT",
"devDependencies": {
"jest": "^24.8.0",
"ts-jest": "^24.0.2",
"ts-node": "^8.3.0",
"tslint": "^5.17.0",
"tslint-eslint-rules": "^5.4.0",
"typescript": "^3.5.2",
"vrsource-tslint-rules": "^6.0.0"
},
"publishConfig": {
"access": "public"
}
}