This repository has been archived by the owner on Dec 25, 2023. It is now read-only.
-
-
Notifications
You must be signed in to change notification settings - Fork 8
/
package.json
56 lines (56 loc) · 1.97 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
49
50
51
52
53
54
55
56
{
"name": "nova-eslint",
"version": "0.0.0",
"description": "Lint your code files with ESLint in Nova.",
"scripts": {
"build": "rollup -c rollup.config.js",
"test": "jest",
"lint": "concurrently 'yarn:lint:*'",
"lint:eslint": "eslint --ignore-path .lintignore \"**/*.{ts,js}\"",
"lint:prettier": "prettier --ignore-path .lintignore --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 .lintignore \"**/*.{ts,js}\"",
"fix:prettier": "prettier --ignore-path .lintignore --write \"**/*.{ts,js,json,md,yml}\"",
"watch": "onchange -i \"src/**\" \"rollup.*.js\" -- npm run build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/apexskier/nova-eslint.git"
},
"author": "Cameron Little",
"license": "MIT",
"bugs": {
"url": "https://github.com/apexskier/nova-eslint/issues"
},
"devDependencies": {
"@html-eslint/eslint-plugin": "^0.21.0",
"@html-eslint/parser": "^0.21.0",
"@rollup/plugin-commonjs": "^25.0.7",
"@rollup/plugin-node-resolve": "^15.2.3",
"@types/eslint": "^8.4.1",
"@types/jest": "^27.4.1",
"@types/nova-editor-node": "^5.1.4",
"@typescript-eslint/eslint-plugin": "^4.33.0",
"@typescript-eslint/parser": "^4.33.0",
"concurrently": "^8.2.2",
"eslint": "^7.32.0",
"eslint-config-prettier": "^9.0.0",
"eslint-plugin-custom-rules": "file:./test/rules-1/custom-rules",
"eslint-plugin-html": "^7.1.0",
"eslint-plugin-markdown": "^3.0.1",
"eslint-plugin-nova": "^1.7.0",
"eslint-plugin-vue": "^9.19.2",
"jest": "^27.5.1",
"onchange": "^7.1.0",
"prettier": "^2.8.8",
"rollup": "^2.79.1",
"rollup-plugin-typescript2": "^0.35.0",
"ts-jest": "^27.1.4",
"typescript": "^4.9.5"
},
"private": true,
"resolutions": {
"tslib": "^2.4.0"
}
}