forked from ubports/installer-configs
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
24 lines (24 loc) · 877 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
{
"name": "installer-configs",
"version": "1.0.0",
"description": "Configuration files for the UBports Installer.",
"scripts": {
"validate": "npm run validate:index && npm run validate:aliases && npm run validate:devices",
"validate:index": "npx ajv-cli validate -s _index.schema.json -d index.json",
"validate:aliases": "npx ajv-cli validate -s _aliases.schema.json -d aliases.json",
"validate:devices": "npx ajv-cli -s v1/_device.schema.json -d \"v1/[a-zA-Z]*.json\""
},
"repository": {
"type": "git",
"url": "git+https://github.com/ubports/installer-configs.git"
},
"author": "Jan Sprinz <[email protected]>",
"bugs": {
"url": "https://github.com/ubports/installer-configs/issues"
},
"homepage": "https://github.com/ubports/installer-configs#readme",
"dependencies": {},
"devDependencies": {
"ajv-cli": "^3.3.0"
}
}