aboutsummaryrefslogtreecommitdiff
path: root/package.json
blob: 3b97e44e845f83a17653095c2c4518260f893d8a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
{
    "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 && node ./dev/lint/html-scripts.js",
        "test-lint-web-ext": "npx web-ext lint",
        "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/",
    "webExt": {
        "sourceDir": "ext"
    },
    "devDependencies": {
        "eslint": "^7.5.0",
        "eslint-plugin-no-unsanitized": "^3.1.2",
        "fake-indexeddb": "^3.1.1",
        "jsdom": "^16.2.2",
        "web-ext": "^5.1.0"
    }
}