forked from laurensslats/draft-devices
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
34 lines (34 loc) · 930 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
33
34
{
"name": "lorawan-schema-draft-devices",
"version": "1.0.0",
"description": "LoRaWAN Device Schema (Draft)",
"directories": {
"example": "examples"
},
"scripts": {
"validate": "find examples -name '*.yaml' -type f -print0 | xargs -0 -n 1 -I {} ajv validate -s schema -d {} --errors text",
"format": "prettier --write schema.json \"examples/**/*.yaml\""
},
"bin": {
"validate": "bin/validate.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/lorawan-schema/draft-devices.git"
},
"author": "The Things Industries B.V.",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/lorawan-schema/draft-devices/issues"
},
"homepage": "https://lorawan-schema.org/draft/devices",
"devDependencies": {
"ajv-cli": "^3.3.0",
"prettier": "^2.2.1"
},
"dependencies": {
"ajv": "^6.12.6",
"js-yaml": "^4.0.0",
"yargs": "^16.2.0"
}
}