This repository has been archived by the owner on Oct 31, 2020. It is now read-only.
forked from jsmecham/nova-eslint
-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
47 lines (47 loc) · 1.69 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
{
"name": "nova-eslint",
"version": "0.0.0",
"description": "Lint your code files with ESLint in Nova.",
"scripts": {
"build": "rollup -c rollup.config.js",
"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/apexskier/nova-eslint.git"
},
"author": "Cameron Little",
"license": "MIT",
"bugs": {
"url": "https://github.com/apexskier/nova-eslint/issues"
},
"devDependencies": {
"@rollup/plugin-commonjs": "^15.1.0",
"@rollup/plugin-node-resolve": "^9.0.0",
"@types/eslint": "^7.2.4",
"@types/nova-editor-node": "^1.2.2",
"@typescript-eslint/eslint-plugin": "^4.5.0",
"@typescript-eslint/parser": "^4.5.0",
"concurrently": "^5.3.0",
"eslint": "^7.12.0",
"eslint-config-prettier": "^6.15.0",
"eslint-plugin-html": "^6.1.0",
"eslint-plugin-markdown": "^2.0.0-rc.0",
"eslint-plugin-nova": "^1.2.0",
"eslint-plugin-vue": "^7.1.0",
"onchange": "^7.1.0",
"prettier": "^2.1.2",
"rollup": "^2.32.1",
"rollup-plugin-typescript2": "^0.28.0",
"typescript": "^4.0.3"
},
"private": true,
"dependencies": {}
}