yomichan/package.json

50 lines
1.8 KiB
JSON
Raw Normal View History

2020-02-08 19:10:53 +00:00
{
"name": "yomichan",
"version": "0.0.0",
"description": "Japanese pop-up dictionary extension for Chrome and Firefox.",
"directories": {
"test": "test"
},
"scripts": {
"build": "node ./dev/build.js",
"test": "npm run test-lint && npm run test-lint-css && npm run test-lint-html && npm run test-code && npm run test-manifest && npm run test-build",
"test-lint": "npx eslint . && node ./dev/lint/global-declarations.js && node ./dev/lint/html-scripts.js",
"test-lint-css": "npx stylelint \"ext/**/*.css\" \"test/**/*.css\" \"dev/**/*.css\"",
"test-lint-html": "npx html-validate \"ext/**/*.html\" \"test/**/*.html\" \"dev/**/*.html\"",
"test-lint-web-ext": "npx web-ext lint",
"test-code": "node ./test/test-all.js ./test --skip ./test/test-manifest.js",
"test-manifest": "node ./test/test-manifest.js",
"test-build": "node ./dev/build.js --dry-run --all"
2020-02-08 19:10:53 +00:00
},
"repository": {
"type": "git",
"url": "git+https://github.com/FooSoft/yomichan.git"
},
"license": "GPL-3.0-or-later",
2020-02-08 19:10:53 +00:00
"licenses": [
{
"type": "GPL-3.0-or-later",
2020-02-08 19:10:53 +00:00
"url": "https://www.gnu.org/licenses/gpl-3.0.html"
}
],
"bugs": {
"url": "https://github.com/FooSoft/yomichan/issues"
},
"homepage": "https://foosoft.net/projects/yomichan/",
"webExt": {
"sourceDir": "ext"
},
2020-02-08 19:10:53 +00:00
"devDependencies": {
"browserify": "^16.5.2",
2020-12-12 18:06:15 +00:00
"eslint": "^7.15.0",
"eslint-plugin-no-unsanitized": "^3.1.4",
"fake-indexeddb": "^3.1.2",
"html-validate": "^4.3.0",
"jsdom": "^16.4.0",
"parse5": "^6.0.1",
"stylelint": "^13.8.0",
"stylelint-config-recommended": "^3.0.0",
2020-12-12 18:06:15 +00:00
"web-ext": "^5.4.1"
2020-02-08 19:10:53 +00:00
}
}