-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
35 lines (35 loc) · 1.08 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
{
"name": "nova-eslint",
"version": "0.3.0",
"description": "Lint your JavaScript and TypeScript files with ESLint.",
"main": "index.js",
"scripts": {
"build": "npx rollup -c",
"build:dist": "npm run build && rm -rf *.novaextension/node_modules",
"test:lint": "npx eslint \"Source/**/*.js\"",
"watch": "onchange -i \"Source/**/*.js\" -- npm run build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/jsmecham/nova-eslint.git"
},
"keywords": [],
"author": "Justin Mecham",
"license": "MIT",
"bugs": {
"url": "https://github.com/jsmecham/nova-eslint/issues"
},
"homepage": "https://github.com/jsmecham/nova-eslint#readme",
"devDependencies": {
"@rollup/plugin-commonjs": "^11.0.2",
"@rollup/plugin-node-resolve": "^7.1.0",
"eslint": "^6.8.0",
"eslint-plugin-nova": "^1.0.0-beta.3",
"onchange": "^6.1.0",
"rollup": "^1.32.1"
},
"dependencies": {
"nova-npm-executable": "^0.1.0"
},
"private": true
}