2022-01-08 17:05:05 +00:00
{
2022-01-08 17:17:05 +00:00
"name" : "domino" ,
"version" : "2.1.6" ,
"license" : "BSD-2-Clause" ,
"author" : "Felix Gnass <fgnass@gmail.com>" ,
2022-01-08 17:05:05 +00:00
"description" : "Server-side DOM implementation based on Mozilla's dom.js" ,
"homepage" : "https://github.com/fgnass/domino" ,
"main" : "./lib" ,
"repository" : {
"type" : "git" ,
2022-01-08 17:17:05 +00:00
"url" : "https://github.com/fgnass/domino.git"
2022-01-08 17:05:05 +00:00
} ,
2022-01-08 17:17:05 +00:00
"files" : [
"CHANGELOG.md" ,
"LICENSE" ,
"README.md" ,
"lib"
] ,
2022-01-08 17:05:05 +00:00
"scripts" : {
"lint" : "jshint lib test/*.js" ,
2022-01-08 17:17:05 +00:00
"mocha" : "./node_modules/.bin/mocha" ,
"mocha-spec" : "./node_modules/.bin/mocha -R spec" ,
2022-01-08 17:05:05 +00:00
"test" : "npm run lint && npm run mocha" ,
"test-spec" : "npm run lint && npm run mocha-spec" ,
2022-01-08 17:17:05 +00:00
"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.'" ,
2022-01-08 17:05:05 +00:00
"version" : "tools/update-changelog.js && git add CHANGELOG.md"
} ,
"types" : "lib/index.d.ts" ,
2022-01-08 17:17:05 +00:00
"devDependencies" : {
"jquery" : "^3.5.1" ,
"jshint" : "^2.11.1" ,
"mocha" : "^6.2.3" ,
"should" : "^13.2.3"
}
2022-01-08 17:05:05 +00:00
}