-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathpackage.json
More file actions
36 lines (36 loc) · 1 KB
/
package.json
File metadata and controls
36 lines (36 loc) · 1 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
33
34
35
36
{
"name": "editorconfig-defaults",
"version": "0.5.0",
"description": "Set of useful default EditorConfig settings",
"author": "EditorConfig community",
"license": "",
"homepage": "https://editorconfig.org/defaults/",
"repository": {
"type": "git",
"url": "https://github.com/editorconfig/editorconfig-defaults.git"
},
"bugs": {
"url": "https://github.com/editorconfig/editorconfig-defaults/issues"
},
"keywords": [
"editorconfig",
"defaults"
],
"engines": {
"node": ">=8.0.0",
"npm": ">=5.0.0"
},
"contributors": [],
"scripts": {
"lint:editorconfig": "eclint check *.json *.js",
"lint:json": "ajv validate -s editorconfig-defaults.schema.json -d editorconfig-defaults.json",
"lint:package": "pjv --recommendations --warnings",
"lint": "npm run lint:package && npm run lint:json && npm run lint:editorconfig"
},
"dependencies": {},
"devDependencies": {
"ajv-cli": "^2.1.0",
"eclint": "^2.5.0",
"package-json-validator": "^0.6.2"
}
}