-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
62 lines (62 loc) · 1.59 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
57
58
59
60
61
62
{
"name": "xml-vs-js",
"version": "2.1.0",
"description": "A xml to js to xml transformer",
"keywords": [
"converter",
"html",
"html-to-json",
"transformer",
"xml",
"xml-to-js",
"xml-to-json"
],
"homepage": "https://github.com/commenthol/xml-vs-js#readme",
"bugs": {
"url": "https://github.com/commenthol/xml-vs-js/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/commenthol/xml-vs-js.git"
},
"license": "Unlicense",
"author": "commenthol <[email protected]>",
"main": "src",
"types": "types/src",
"directories": {
"test": "test"
},
"scripts": {
"ci": "npm run clean && npm run lint && npm test && npm run types",
"clean": "rimraf coverage .nyc_output",
"clean:all": "rimraf node_modules && npm run clean",
"coverage": "c8 -r lcov -r text -r html npm test",
"lint": "eslint --ext .js .",
"prepublishOnly": "npm run ci",
"test": "mocha",
"types": "rimraf types; tsc --emitDeclarationOnly true --noEmitOnError"
},
"dependencies": {
"entities": "^3.0.1",
"htmlparser2": "^7.2.0"
},
"devDependencies": {
"@types/node": "*",
"c8": "^7.11.0",
"debug": "^4.3.3",
"eslint": "^7.32.0",
"eslint-config-standard": "^16.0.3",
"eslint-plugin-import": "^2.25.4",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^5.2.0",
"eslint-plugin-standard": "^5.0.0",
"mocha": "^9.2.1",
"rimraf": "^3.0.2",
"serialize-to-module": "^1.1.0",
"superagent": "^7.1.1",
"typescript": "^4.6.2"
},
"engines": {
"node": ">=8"
}
}