-
Notifications
You must be signed in to change notification settings - Fork 14
/
package.json
79 lines (79 loc) · 1.86 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
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
{
"name": "libtidy",
"version": "0.3.8",
"description": "Node bindings to the HTML Tidy library",
"main": "src/index.js",
"bin": {
"htmltidy": "src/cli.js"
},
"binary": {
"module_name": "tidy",
"module_path": "./lib/",
"host": "https://github.com",
"remote_path": "./gagern/node-libtidy/releases/download/v{version}/",
"package_name": "{node_abi}-{platform}-{arch}.tar.gz"
},
"types": "src/index.d.ts",
"scripts": {
"install": "node-pre-gyp install --fallback-to-build",
"prepublish": "node util/gen-typescript-decl.js",
"pretest": "node util/gen-typescript-decl.js",
"test": "mocha --compilers ts:ts-node/register"
},
"repository": {
"type": "git",
"url": "git+https://github.com/gagern/node-libtidy.git"
},
"keywords": [
"htmltidy",
"libtidy",
"tidylib",
"html",
"tidy",
"html5",
"beautify",
"format",
"indent"
],
"author": "Martin von Gagern <[email protected]>",
"contributors": [
"Raphael Ackermann <[email protected]>",
"Wang Guan <[email protected]>"
],
"license": "MIT",
"gypfile": true,
"bugs": {
"url": "https://github.com/gagern/node-libtidy/issues"
},
"homepage": "https://github.com/gagern/node-libtidy#readme",
"devDependencies": {
"@types/chai": "^3.4.1",
"@types/mocha": "^2.2.40",
"@types/node": "^7.0.12",
"chai": "^3.4.1",
"chai-subset": "^1.2.0",
"htmltidy2": "^0.1.4",
"mocha": "^3.1.2",
"ts-node": "^3.0.2",
"typescript": "^2.2.2"
},
"dependencies": {
"nan": "^2.1.0",
"node-pre-gyp": "^0.6.36"
},
"bundledDependencies": [
"node-pre-gyp"
],
"files": [
"src/",
"test/",
"/*.js",
"/*.md",
"binding.gyp",
"tidy-html5/version.txt",
"tidy-html5/README.md",
"tidy-html5/README/",
"tidy-html5/src/",
"tidy-html5/include/"
]
}