-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
57 lines (57 loc) · 1.8 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
{
"name": "fast-html",
"version": "0.1.2",
"description": "Fast HTML parser. Based on ashi009's fast-html-parser.",
"main": "lib/index.js",
"scripts": {
"watch": "nodemon --exec \"npm run test-spec\"",
"test": "npm run test-spec && npm run test-optimized && npm run test-benchmark && npm run test-coverage && npm run jshint && npm run jscs",
"test-spec": "mocha test/test-*.js",
"test-doc": "mocha -R doc test/test-*.js | cat docs/_begin.html - docs/_end.html > docs/index.html",
"test-optimized": "node --trace_opt --trace_deopt --allow-natives-syntax test/optimized.js",
"test-benchmark": "node test/benchmark.js",
"test-coverage": "istanbul cover _mocha --report lcovonly test/test-*.js",
"coveralls": "cat ./coverage/lcov.info | coveralls",
"install-hooks": "cp ./hooks/* ./.git/hooks/",
"jshint": "find lib -name '*.js' | xargs jshint -c .jshintrc",
"jscs": "jscs --config .jscsrc lib/"
},
"author": {
"name": "DOM2WG",
"email": "[email protected]"
},
"contributors": [
{
"name": "Bjoern Brauer",
"email": "[email protected]"
},
{
"name": "Mario Nebl",
"email": "[email protected]"
}
],
"repository": {
"type": "git",
"url": "git://github.com:nerdlabs/fast-html.git"
},
"bugs": {
"url": "https://github.com/nerdlabs/fast-html/issues"
},
"license": "MIT",
"devDependencies": {
"chai": "~1.9.2",
"coveralls": "~2.11.2",
"htmlparser-benchmark": "git://github.com/AndreasMadsen/htmlparser-benchmark",
"istanbul": "~0.3.2",
"mocha": "~1.21.4",
"mocha-lcov-reporter": "0.0.1",
"nodemon": "^1.2.1",
"sinon": "~1.10.3",
"jshint": "~2.5.6",
"jscs": "~1.7.1"
},
"dependencies": {
"parse-attributes": "0.0.1",
"small-eventemitter": "^1.0.0"
}
}