forked from fgnass/domino
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
36 lines (36 loc) · 1.16 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
{
"name": "domino",
"version": "2.1.6+git",
"license": "BSD-2-Clause",
"author": "Felix Gnass <[email protected]>",
"description": "Server-side DOM implementation based on Mozilla's dom.js",
"homepage": "https://github.com/fgnass/domino",
"main": "./lib",
"repository": {
"type": "git",
"url": "https://github.com/fgnass/domino.git"
},
"files": [
"CHANGELOG.md",
"LICENSE",
"README.md",
"lib"
],
"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",
"bump-version": "npm version patch -m 'Release domino %s.' && tools/bump-version.js && npm run version && git add package.json && git commit -m 'Bump version after release.'",
"version": "tools/update-changelog.js && git add CHANGELOG.md"
},
"types": "lib/index.d.ts",
"devDependencies": {
"jquery": "^3.5.1",
"jshint": "^2.11.1",
"mocha": "^6.2.3",
"should": "^13.2.3"
}
}