diff options
author | toasted-nutbread <toasted-nutbread@users.noreply.github.com> | 2020-02-16 21:11:18 -0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-02-16 21:11:18 -0500 |
commit | ab2cec04795e1b3b3f3681d6fe609fb1462ee711 (patch) | |
tree | 0e47f4702c4b4ed40af58346826ec9d6a3b6d03e /package.json | |
parent | c6efa656268b93c612f3f4f9c5de0a2523506902 (diff) | |
parent | e83167dcd1f40ed8c9fd0f2f1039717b61175e9e (diff) |
Merge pull request #352 from toasted-nutbread/github-actions
Setup GitHub actions
Diffstat (limited to 'package.json')
-rw-r--r-- | package.json | 31 |
1 files changed, 31 insertions, 0 deletions
diff --git a/package.json b/package.json new file mode 100644 index 00000000..8e71de59 --- /dev/null +++ b/package.json @@ -0,0 +1,31 @@ +{ + "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", + "eslint-plugin-no-unsanitized": "^3.0.2" + } +} |