04d47bf8a9
* Refactor manifest.json * Change end-of-line convention for built plain-text files * Ignore builds directory * Mark the "dev" directory as using the node environment * Create build script * Register build scripts * Remove old build script * Fix 64x64 icon * Add test to ensure manifest data is updated properly
38 lines
1.4 KiB
JSON
38 lines
1.4 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 ./test/lint/global-declarations.js",
|
|
"test-code": "node ./test/test-schema.js && node ./test/test-dictionary.js && node ./test/test-database.js && node ./test/test-document.js && node ./test/test-object-property-accessor.js && node ./test/test-japanese.js && node ./test/test-text-source-map.js && node ./test/test-dom-text-scanner.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"
|
|
}
|
|
}
|