aboutsummaryrefslogtreecommitdiff
path: root/package.json
blob: 532d4a51bb719fb7264ba720c84d3b1eba611047 (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
43
44
45
46
47
48
49
50
51
52
53
54
{
    "name": "yomichan",
    "version": "0.0.0",
    "description": "Japanese pop-up dictionary extension for Chrome and Firefox.",
    "directories": {
        "test": "test"
    },
    "scripts": {
        "postinstall": "node ./dev/patch-dependencies.js",
        "build": "node ./dev/build.js",
        "test": "npm run test-lint && npm run test-lint-css && npm run test-lint-html && npm run test-code && npm run test-manifest && npm run test-build",
        "test-lint": "npx eslint . && node ./dev/lint/global-declarations.js && node ./dev/lint/html-scripts.js",
        "test-lint-css": "npx stylelint \"ext/**/*.css\" \"test/**/*.css\" \"dev/**/*.css\"",
        "test-lint-html": "npx html-validate \"ext/**/*.html\" \"test/**/*.html\" \"dev/**/*.html\"",
        "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",
        "test-build": "node ./dev/build.js --dry-run --all"
    },
    "repository": {
        "type": "git",
        "url": "git+https://github.com/FooSoft/yomichan.git"
    },
    "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": {
        "ajv": "^8.11.0",
        "browserify": "^17.0.0",
        "css": "^3.0.0",
        "eslint": "^8.15.0",
        "eslint-plugin-header": "^3.1.1",
        "eslint-plugin-jsdoc": "^39.2.9",
        "eslint-plugin-no-unsanitized": "^4.0.1",
        "fake-indexeddb": "^3.1.7",
        "html-validate": "^7.1.0",
        "jsdom": "^19.0.0",
        "parse5": "^7.0.0",
        "stylelint": "^14.8.2",
        "stylelint-config-recommended": "^7.0.0",
        "web-ext": "^6.8.0"
    }
}