forked from majo44/domino
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
25 lines (25 loc) · 830 Bytes
/
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
{
"name": "domino-custom-elements",
"version": "1.1.6",
"author": "Paweł Majewski <[email protected]>",
"description": "Server-side DOM implementation based on Mozilla's dom.js, with support of custom-elements",
"homepage": "https://github.com/majo44/domino",
"main": "./lib",
"repository": {
"type": "git",
"url": "https://github.com/majo44/domino.git"
},
"scripts": {
"lint": "jshint lib test/*.js",
"mocha": "./node_modules/.bin/mocha",
"mocha-spec": "./node_modules/.bin/mocha -R spec",
"test": "npm run lint && npm run mocha",
"test-spec": "npm run lint && npm run mocha-spec",
"regen-html5lib-tests": "node test/tools/update-html5lib-tests.js test/html5lib-tests.json"
},
"devDependencies": {
"jshint": "^2.9.1",
"mocha": "^3.2.0",
"should": "^11.1.2"
}
}