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": {
|
2021-07-02 20:59:36 +00:00
|
|
|
"postinstall": "node ./dev/patch-dependencies.js",
|
2020-08-09 17:09:06 +00:00
|
|
|
"build": "node ./dev/build.js",
|
2021-01-31 01:44:54 +00:00
|
|
|
"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",
|
2021-01-24 20:11:37 +00:00
|
|
|
"test-lint": "npx eslint . && node ./dev/lint/global-declarations.js && node ./dev/lint/html-scripts.js",
|
2021-01-31 01:44:54 +00:00
|
|
|
"test-lint-css": "npx stylelint \"ext/**/*.css\" \"test/**/*.css\" \"dev/**/*.css\"",
|
|
|
|
"test-lint-html": "npx html-validate \"ext/**/*.html\" \"test/**/*.html\" \"dev/**/*.html\"",
|
2020-09-26 17:44:47 +00:00
|
|
|
"test-lint-web-ext": "npx web-ext lint",
|
2020-09-19 23:04:28 +00:00
|
|
|
"test-code": "node ./test/test-all.js ./test --skip ./test/test-manifest.js",
|
2020-12-19 01:51:22 +00:00
|
|
|
"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"
|
|
|
|
},
|
2020-02-23 16:49:10 +00:00
|
|
|
"license": "GPL-3.0-or-later",
|
2020-02-08 19:10:53 +00:00
|
|
|
"licenses": [
|
|
|
|
{
|
2020-02-23 16:49:10 +00:00
|
|
|
"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/",
|
2020-09-26 17:44:47 +00:00
|
|
|
"webExt": {
|
|
|
|
"sourceDir": "ext"
|
|
|
|
},
|
2020-02-08 19:10:53 +00:00
|
|
|
"devDependencies": {
|
2022-05-17 00:09:38 +00:00
|
|
|
"ajv": "^8.11.0",
|
2021-03-16 03:17:50 +00:00
|
|
|
"browserify": "^17.0.0",
|
2021-06-27 21:57:00 +00:00
|
|
|
"css": "^3.0.0",
|
2022-04-02 13:41:25 +00:00
|
|
|
"eslint": "^8.12.0",
|
2021-02-26 01:21:05 +00:00
|
|
|
"eslint-plugin-header": "^3.1.1",
|
2022-02-03 01:34:21 +00:00
|
|
|
"eslint-plugin-no-unsanitized": "^4.0.1",
|
|
|
|
"fake-indexeddb": "^3.1.7",
|
2022-04-02 13:41:25 +00:00
|
|
|
"html-validate": "^6.6.1",
|
2022-02-03 01:34:21 +00:00
|
|
|
"jsdom": "^19.0.0",
|
2022-05-17 01:25:05 +00:00
|
|
|
"parse5": "^7.0.0",
|
2022-04-02 13:41:25 +00:00
|
|
|
"stylelint": "^14.6.1",
|
|
|
|
"stylelint-config-recommended": "^7.0.0",
|
|
|
|
"web-ext": "^6.8.0"
|
2020-02-08 19:10:53 +00:00
|
|
|
}
|
|
|
|
}
|