forked from maasglobal/maas-schemas
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
60 lines (60 loc) · 1.72 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
48
49
50
51
52
53
54
55
56
57
58
59
60
{
"name": "maas-schemas",
"version": "7.1.0",
"description": "Schemas for MaaS infrastructure",
"main": "index.js",
"engine": {
"node": ">=6"
},
"repository": {
"type": "git",
"url": "git+https://github.com/maasglobal/maas-schemas.git"
},
"keywords": [
"schemas",
"maas",
"JSON"
],
"author": "",
"contributors": [
"James Nguyen",
"Klaus Dahlen",
"Lauri Svan"
],
"license": "MIT",
"bugs": {
"url": "https://github.com/maasglobal/maas-schemas/issues"
},
"homepage": "https://github.com/maasglobal/maas-schemas#readme",
"dependencies": {
"ajv": "^6.8.1",
"ajv-merge-patch": "^4.1.0",
"fast-glob": "^2.2.6"
},
"devDependencies": {
"chai": "^4.2.0",
"eslint": "^5.12.1",
"eslint-config-maasglobal": "^2.0.7",
"eslint-plugin-import": "^2.15",
"essentials": "1",
"git-list-updated": "^1.1.2",
"glob": "^7.1.3",
"jest": "^23.6",
"jest-cli": "^23.6",
"prettier": "^1.16.1"
},
"eslintConfig": {
"extends": "maasglobal"
},
"scripts": {
"lint": "eslint --ignore-path=.gitignore .",
"lint-updated": "pipe-git-updated --base=develop --ext=js -- eslint --ignore-pattern '!*'",
"prettier-check-updated": "pipe-git-updated --base=develop --ext=css --ext=html --ext=js --ext=json --ext=md --ext=yaml --ext=yml -- prettier -c",
"prettify": "prettier --write --ignore-path .gitignore '**/*.{css,html,js,json,md,yaml,yml}'",
"prettify-updated": "pipe-git-updated --base=develop --ext=css --ext=html --ext=js --ext=json --ext=md --ext=yaml --ext=yml -- prettier --write",
"validate-schemas": "./scripts/validate-schemas.js",
"test": "jest",
"build": "node build.js",
"prepublish": "node build.js"
}
}