diff options
author | Alex Yatskov <alex@foosoft.net> | 2020-02-24 21:31:14 -0800 |
---|---|---|
committer | Alex Yatskov <alex@foosoft.net> | 2020-02-24 21:31:14 -0800 |
commit | d32f4def0eeed1599857bc04c973337a2a13dd8b (patch) | |
tree | 61149656f361dd2d9998d67d68249dc184b73fbb /package.json | |
parent | 0c5b9b1fa1599cbf769d96cdebc226310f9dd8bc (diff) | |
parent | 706c3edcffb0078d71fd5b58775f16cf5fc1205b (diff) |
Merge branch 'master' into testing
Diffstat (limited to 'package.json')
-rw-r--r-- | package.json | 34 |
1 files changed, 34 insertions, 0 deletions
diff --git a/package.json b/package.json new file mode 100644 index 00000000..17fdfa82 --- /dev/null +++ b/package.json @@ -0,0 +1,34 @@ +{ + "name": "yomichan", + "version": "0.0.0", + "description": "Japanese pop-up dictionary extension for Chrome and Firefox.", + "directories": { + "test": "test" + }, + "scripts": { + "test": "npm run test-lint && npm run test-code", + "test-lint": "eslint .", + "test-code": "node ./test/test-schema.js && node ./test/test-dictionary.js && node ./test/test-database.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": "^6.8.0", + "eslint-plugin-no-unsanitized": "^3.0.2", + "fake-indexeddb": "^3.0.0" + } +} |