-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
54 lines (54 loc) · 1.49 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
{
"name": "fast-dom",
"version": "0.0.0",
"description": "A sane implementation of the DOM.",
"main": "lib/index.js",
"scripts": {
"watch": "nodemon --exec \"npm run test-spec\"",
"test": "npm run test-spec && npm run test-coverage",
"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-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/"
},
"repository": {
"type": "git",
"url": "git://github.com/nerdlabs/fast-dom.git"
},
"author": {
"name": "DOM2WG",
"email": "[email protected]"
},
"contributors": [
{
"name": "Bjoern Brauer",
"email": "[email protected]"
},
{
"name": "Mario Nebl",
"email": "[email protected]"
}
],
"license": "MIT",
"bugs": {
"url": "https://github.com/nerdlabs/fast-dom/issues"
},
"devDependencies": {
"chai": "~1.9.2",
"coveralls": "~2.11.2",
"istanbul": "~0.3.2",
"jscs": "~1.7.1",
"jshint": "~2.5.6",
"mocha": "~1.21.4",
"mocha-lcov-reporter": "0.0.1",
"nodemon": "^1.2.1",
"sinon": "~1.10.3"
},
"dependencies": {
"fasthtml": "0.0.1",
"vtree": "git://github.com/zaubernerd/vtree#fresh-object-array"
}
}