diff options
author | toasted-nutbread <toasted-nutbread@users.noreply.github.com> | 2020-02-08 14:10:53 -0500 |
---|---|---|
committer | toasted-nutbread <toasted-nutbread@users.noreply.github.com> | 2020-02-12 19:07:27 -0500 |
commit | b97f80e4d94e6ed5abe8a6dadb1629712192783c (patch) | |
tree | 58512257b9e651ea7b9b60d239a520f931e03f45 /package.json | |
parent | af89659751f72ae282f2c81d797cc224d1077b0a (diff) |
Setup GitHub actions
Diffstat (limited to 'package.json')
-rw-r--r-- | package.json | 30 |
1 files changed, 30 insertions, 0 deletions
diff --git a/package.json b/package.json new file mode 100644 index 00000000..eb1fb25c --- /dev/null +++ b/package.json @@ -0,0 +1,30 @@ +{ + "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", + "test-lint": "eslint ." + }, + "repository": { + "type": "git", + "url": "git+https://github.com/FooSoft/yomichan.git" + }, + "author": "FooSoft", + "licenses": [ + { + "type": "GPLv3", + "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" + } +} |