yomichan/package.json
toasted-nutbread 51d4e5b0ff
Dev/test script organization (#846)
* Move lint scripts

* Move dictionary-validate.js

* Move schema-validate.js

* Move createTestDictionaryArchive, remove yomichan-test.js

* Rename yomichan-util.js to util.js

* Move test/yomichan-vm.js to dev/vm.js

* Move getArgs into util.js (and fix name)

* Create test-all.js

* Update test-code script
2020-09-19 19:04:28 -04:00

38 lines
1.2 KiB
JSON

{
"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-code && npm run test-manifest",
"test-lint": "eslint . && node ./dev/lint/global-declarations.js",
"test-code": "node ./test/test-all.js ./test --skip ./test/test-manifest.js",
"test-manifest": "node ./test/test-manifest.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/FooSoft/yomichan.git"
},
"author": "FooSoft",
"license": "GPL-3.0-or-later",
"licenses": [
{
"type": "GPL-3.0-or-later",
"url": "https://www.gnu.org/licenses/gpl-3.0.html"
}
],
"bugs": {
"url": "https://github.com/FooSoft/yomichan/issues"
},
"homepage": "https://foosoft.net/projects/yomichan/",
"devDependencies": {
"eslint": "^7.5.0",
"eslint-plugin-no-unsanitized": "^3.1.2",
"fake-indexeddb": "^3.1.1",
"jsdom": "^16.2.2"
}
}