-
Notifications
You must be signed in to change notification settings - Fork 8
/
package.json
32 lines (32 loc) · 1018 Bytes
/
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
{
"name": "nova-rubocop",
"version": "0.6.0",
"description": "Lint your Ruby source files with RuboCop.",
"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-rubocop.git"
},
"keywords": [],
"author": "Justin Mecham",
"license": "MIT",
"bugs": {
"url": "https://github.com/jsmecham/nova-rubocop/issues"
},
"homepage": "https://github.com/jsmecham/nova-rubocop#readme",
"devDependencies": {
"@rollup/plugin-commonjs": "^21.0.3",
"@rollup/plugin-node-resolve": "^13.2.0",
"eslint": "^8.13.0",
"eslint-plugin-nova": "^1.7.0",
"onchange": "^7.1.0",
"rollup": "^2.70.1"
},
"private": true
}