-
Notifications
You must be signed in to change notification settings - Fork 143
/
Copy pathpackage.json
43 lines (43 loc) · 1.01 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
{
"name": "fast-html-parser",
"version": "1.0.1",
"description": "A very fast HTML parser, generating a simplified DOM, with basic element query support.",
"main": "index.js",
"scripts": {
"test": "mocha",
"posttest": "mocha -R travis-cov",
"coverage": "mocha -R html-cov > coverage.html"
},
"author": "Xiaoyi Shi <[email protected]>",
"license": "MIT",
"dependencies": {
"apollojs": "^1.3.0",
"entities": "^1.1.1"
},
"devDependencies": {
"mocha": "^1",
"should": "*",
"blanket": "*",
"travis-cov": "*"
},
"config": {
"blanket": {
"pattern": "index.js",
"data-cover-never": ["node_modules"]
},
"travis-cov": {
"threshold": 70
}
},
"directories": {
"test": "test"
},
"repository": {
"type": "git",
"url": "https://github.com/ashi009/node-fast-html-parser.git"
},
"bugs": {
"url": "https://github.com/ashi009/node-fast-html-parser/issues"
},
"homepage": "https://github.com/ashi009/node-fast-html-parser"
}