forked from ubports/installer-configs
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
49 lines (49 loc) · 1.39 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
{
"name": "ubports-installer-configs",
"version": "2.0.0",
"description": "Configuration files for the UBports Installer.",
"type": "module",
"files": [
"lib/",
"LICENSE",
"README.md",
"CHANGELOG.md"
],
"main": "lib/validator.js",
"bin": "lib/cli.js",
"types": "lib/validator.d.ts",
"scripts": {
"validate": "./v2/cli.ts validate",
"test": "./v2/cli.ts test",
"build": "rm -rf build lib && ./v2/build.ts && npx tsc --build ./tsconfig.build.json",
"checkdownloads": "./v2/checkDownloads.ts",
"checksemver": "./v2/checkSemver.ts",
"lint": "npx prettier \"**\" --ignore-path=.gitignore --arrow-parens=avoid --trailing-comma=none -uw"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ubports/installer-configs.git"
},
"author": "Johannah Sprinz <[email protected]>",
"license": "GPL-3.0-or-later",
"bugs": {
"url": "https://github.com/ubports/installer-configs/issues"
},
"homepage": "https://github.com/ubports/installer-configs#readme",
"devDependencies": {
"@types/node": "^18.11.18",
"axios": "^1.2.2",
"json-schema-to-typescript": "^11.0.2",
"prettier": "^2.8.3",
"progressive-downloader": "^2.0.2"
},
"dependencies": {
"ajv": "^8.12.0",
"chalk": "^5.2.0",
"commander": "^10.0.0",
"globby": "^13.1.3",
"semver": "^7.3.8",
"ts-node": "^10.9.1",
"yaml": "^2.2.1"
}
}