-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
56 lines (56 loc) · 1.44 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
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
{
"name": "jsdomparser",
"version": "1.0.0",
"description": "HTML parser and serializer with DOM APIs",
"author": "Monis Qadri https://github.com/monis0395",
"contributors": [
"https://github.com/monis0395/jsdomparser/graphs/contributors"
],
"homepage": "",
"keywords": [
"jsdomparser",
"jsdom",
"parser",
"dom-proxy",
"dom-api",
"dom",
"html5"
],
"license": "MIT",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"clean": "rimraf dist",
"ts:cjs": "tsc -m commonjs",
"ts:umd": "tsc -m amd -d false --outFile ./dist/index.amd.js",
"test": "mocha -r ts-node/register **/*.test.ts ",
"prebuild": "npm run test",
"build": "run-s clean ts:cjs ts:umd"
},
"dependencies": {
"html-escaper": "^3.0.0",
"parse5": "^6.0.0"
},
"devDependencies": {
"@babel/cli": "^7.8.4",
"@babel/core": "^7.9.6",
"@babel/plugin-proposal-class-properties": "^7.8.3",
"@babel/preset-env": "^7.9.6",
"@babel/preset-typescript": "^7.9.0",
"@types/chai": "^4.2.11",
"@types/mocha": "^7.0.2",
"@types/node": "^13.13.5",
"@types/parse5": "^5.0.2",
"babel-loader": "^8.1.0",
"chai": "^4.2.0",
"mocha": "^7.1.2",
"npm-run-all": "^4.1.5",
"rimraf": "^3.0.2",
"ts-node": "^8.10.1",
"tslint": "^6.1.2",
"typescript": "^4.5.4",
"webpack": "^4.43.0",
"webpack-bundle-analyzer": "^3.7.0",
"webpack-cli": "^3.3.11"
}
}