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": {
|
2020-08-09 17:09:06 +00:00
|
|
|
"build": "node ./dev/build.js",
|
|
|
|
"test": "npm run test-lint && npm run test-code && npm run test-manifest",
|
2020-09-20 01:57:11 +00:00
|
|
|
"test-lint": "eslint . && node ./dev/lint/global-declarations.js && node ./dev/lint/html-scripts.js",
|
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-08-09 17:09:06 +00:00
|
|
|
"test-manifest": "node ./test/test-manifest.js"
|
2020-02-08 19:10:53 +00:00
|
|
|
},
|
|
|
|
"repository": {
|
|
|
|
"type": "git",
|
|
|
|
"url": "git+https://github.com/FooSoft/yomichan.git"
|
|
|
|
},
|
|
|
|
"author": "FooSoft",
|
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": {
|
2020-07-20 02:05:37 +00:00
|
|
|
"eslint": "^7.5.0",
|
|
|
|
"eslint-plugin-no-unsanitized": "^3.1.2",
|
|
|
|
"fake-indexeddb": "^3.1.1",
|
2020-09-26 17:44:47 +00:00
|
|
|
"jsdom": "^16.2.2",
|
|
|
|
"web-ext": "^5.1.0"
|
2020-02-08 19:10:53 +00:00
|
|
|
}
|
|
|
|
}
|