-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
48 lines (48 loc) · 1.82 KB
/
package.json
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
{
"name": "shellcheck.novaextension",
"version": "1.0.0",
"description": "A extension for Nova which integrates [ShellCheck](https://www.shellcheck.net) for static analysis of shell scripts.",
"main": "shellcheck.nova/Scripts/main.dist.js",
"private": true,
"directories": {
"test": "test"
},
"scripts": {
"build": "rollup --bundleConfigAsCjs --config rollup.config.main.js",
"test": "jest --passWithNoTests",
"lint": "concurrently 'yarn:lint:*'",
"lint:eslint": "eslint --ignore-path .gitignore \"**/*.{ts,js}\"",
"lint:prettier": "prettier --ignore-path .gitignore --check \"**/*.{ts,js,json,md,yml}\"",
"lint:json": "find . -name node_modules -prune -false -o -type f -name '*.json' -exec node -e 'require(\"{}\")' \\;",
"fix": "concurrently 'yarn:fix:*'",
"fix:eslint": "eslint --fix --ignore-path .gitignore \"**/*.{ts,js}\"",
"fix:prettier": "prettier --ignore-path .gitignore --write \"**/*.{ts,js,json,md,yml}\"",
"watch": "onchange -i \"src/**\" \"rollup.*.js\" -- npm run build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/olly/nova-shellcheck.git"
},
"author": "Olly Legg <[email protected]>",
"bugs": {
"url": "https://github.com/olly/nova-shellcheck/issues"
},
"homepage": "https://github.com/olly/nova-shellcheck#readme",
"devDependencies": {
"@rollup/plugin-typescript": "^11.1.6",
"@types/jest": "^29.5.11",
"@types/nova-editor-node": "^5.1.4",
"@typescript-eslint/eslint-plugin": "^6.19.0",
"@typescript-eslint/parser": "^6.19.0",
"concurrently": "^8.2.2",
"eslint": "^8.56.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-nova": "^1.7.0",
"jest": "^29.7.0",
"onchange": "^7.1.0",
"prettier": "^3.2.4",
"rollup": "^4.9.5",
"ts-jest": "^29.1.1",
"typescript": "^5.3.3"
}
}