-
Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy pathpackage.json
More file actions
32 lines (32 loc) · 1.12 KB
/
package.json
File metadata and controls
32 lines (32 loc) · 1.12 KB
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": "linterhub",
"version": "1.0.0",
"scripts": {
"build": "gulp",
"format": "npm run schema-format && npm run engine-format",
"validate": "npm run schema-validate && npm run engine-validate",
"bundle": "npm run engine-bundle",
"git-changed": "git diff --exit-code || true",
"language-import": "node script/js/language.import.js",
"license-import": "node script/js/license.import.js",
"schema-format": "node script/js/schema.format.js",
"schema-validate": "node script/js/schema.validate.js",
"engine-bundle": "node script/js/engine.bundle.js",
"engine-format": "node script/js/engine.format.js",
"engine-validate": "node script/js/engine.validate.js"
},
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/repometric/linterhub.git"
},
"devDependencies": {
"del": "^3.0.0",
"json-schema-remote": "^1.3.3",
"gulp": "^3.9.1",
"exit-code": "^1.0.2",
"fs-finder": "^1.8.1",
"js-yaml": "^3.0.2",
"wetzel": "0.0.5"
}
}