-
-
Notifications
You must be signed in to change notification settings - Fork 13
/
Copy pathpackage.json
93 lines (93 loc) · 2.57 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
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
{
"name": "openupm-cli",
"version": "4.5.0",
"preferGlobal": true,
"description": "openupm command line interface",
"engines": {
"node": ">=18"
},
"scripts": {
"test:e2e": "jest --testMatch \"**/e2e/**/*.test.ts\" --runInBand",
"test:integration": "jest --testMatch \"**/integration/**/*.test.ts\" --runInBand",
"test:unit": "jest --testMatch \"**/unit/**/*.test.ts\"",
"clean": "rimraf lib",
"build": "npm run clean && tsc -p tsconfig.build.json",
"build:watch": "tsc -w -p tsconfig.build.json",
"semantic-release": "semantic-release"
},
"bin": {
"openupm": "lib/index.js",
"openupm-cli": "lib/index.js"
},
"repository": {
"type": "git",
"url": "https://github.com/openupm/openupm-cli.git"
},
"keywords": [
"openupm",
"cli"
],
"author": "Favo Yang",
"license": "BSD-3-Clause",
"bugs": {
"url": "https://github.com/openupm/openupm-cli/issues"
},
"homepage": "https://openupm.com",
"devDependencies": {
"@babel/core": "^7.18.6",
"@babel/eslint-parser": "^7.17.0",
"@npm/types": "^1.0.2",
"@semantic-release/changelog": "^6.0.1",
"@semantic-release/git": "^10.0.1",
"@types/cli-table": "^0.3.4",
"@types/fs-extra": "^11.0.3",
"@types/jest": "^29.5.12",
"@types/libnpmsearch": "^2.0.4",
"@types/node": "^18.19.31",
"@types/npm-profile": "^5.0.5",
"@types/npmlog": "^4.1.4",
"@types/pkginfo": "^0.4.1",
"@types/promptly": "^3.0.3",
"@types/request": "^2.48.12",
"@types/update-notifier": "^5.1.0",
"@typescript-eslint/eslint-plugin": "^6.8.0",
"@typescript-eslint/parser": "^6.8.0",
"cross-env": "^7.0.3",
"eslint": "^8.51.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-jsdoc": "^48.8.3",
"fast-check": "^3.16.0",
"jest": "^29.7.0",
"nock": "^13.5.5",
"prettier": "^2.8.8",
"rimraf": "^5.0.5",
"semantic-release": "^22.0.12",
"ts-jest": "^29.1.2",
"typescript": "^5.5.4"
},
"dependencies": {
"@commander-js/extra-typings": "^9.5.0",
"@iarna/toml": "^2.2.5",
"chalk": "^4.1.2",
"cli-table": "^0.3.11",
"commander": "^9.5.0",
"fs-extra": "^10.1.0",
"libnpmsearch": "^5.0.3",
"mkdirp": "^3.0.1",
"node-fetch": "^2.7.0",
"npm-profile": "^11.0.0",
"npm-registry-fetch": "^13.1.1",
"npmlog": "^6.0.2",
"pkginfo": "^0.4.1",
"promptly": "^3.2.0",
"semver": "^7.5.4",
"ts-custom-error": "^3.3.1",
"ts-results-es": "^4.1.0",
"update-notifier": "^5.1.0",
"yaml": "^2.2.2",
"zod": "^3.23.8"
},
"volta": {
"node": "18.20.2"
}
}