-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
81 lines (81 loc) · 2.03 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
{
"name": "ng-deploy-oss",
"version": "19.0.0",
"description": "Deploy Angular apps to aliyun OSS, qiniu, upyun using the Angular CLI.",
"keywords": [
"schematics",
"angular",
"aliyun oss",
"qiniu",
"upyun",
"deploy"
],
"author": {
"name": "cipchk",
"url": "https://www.zhihu.com/people/cipchk"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/cipchk/ng-deploy-oss/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/cipchk/ng-deploy-oss.git"
},
"homepage": "https://github.com/cipchk/ng-deploy-oss",
"main": "./schematics/index",
"builders": "./builders.json",
"schematics": "./collection.json",
"ng-add": {
"save": "devDependencies"
},
"scripts": {
"test": "jest --watch",
"test:ci": "jest",
"lint": "eslint .",
"build": "tsx scripts/build.ts",
"build:test": "npm run build -- --test",
"release": "npm run build -- --release"
},
"dependencies": {
"@angular-devkit/architect": "^0.1900.1",
"@angular-devkit/build-angular": "19.0.1",
"@angular-devkit/core": "^19.0.1",
"@angular-devkit/schematics": "^19.0.1",
"ali-oss": "^6.21.0",
"chalk": "^5.3.0",
"fs-extra": "^11.2.0",
"inquirer": "^12.1.0",
"inquirer-autocomplete-prompt": "^3.0.1",
"qiniu": "^7.14.0",
"typescript": "~5.6.2",
"upyun": "^3.4.6"
},
"devDependencies": {
"@schematics/angular": "^19.0.1",
"@types/ali-oss": "^6.16.11",
"@types/fs-extra": "^11.0.4",
"@types/inquirer": "9.0.7",
"@types/jest": "^29.5.14",
"@types/node": "^20.17.7",
"@types/rimraf": "^4.0.5",
"@types/upyun": "^3.4.0",
"@typescript-eslint/eslint-plugin": "^8.15.0",
"@typescript-eslint/parser": "^8.15.0",
"eslint": "^8.53.0",
"jest": "^29.7.0",
"prettier": "^3.3.3",
"rimraf": "^6.0.1",
"ts-jest": "^29.2.5",
"tsx": "^4.19.2"
},
"jest": {
"roots": [
"<rootDir>/src"
],
"transform": {
"^.+\\.tsx?$": "ts-jest"
}
},
"packageManager": "[email protected]"
}