forked from wszgrcy/angular-miniprogram
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
74 lines (74 loc) · 2.76 KB
/
package.json
File metadata and controls
74 lines (74 loc) · 2.76 KB
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
{
"name": "angular-miniprogram",
"version": "0.0.0",
"description": "",
"main": "index.js",
"scripts": {
"test:ci": "npm run build:library && npm run test:jasmine library&& npm run test:jasmine",
"test": "npm run test:jasmine",
"test:jasmine": "tsc -p ./script/tsconfig.startup-jasmine.json && node ./script/startup-jasmine.js",
"prebuild": "rimraf ./dist",
"build": " npm run build:library && npm run build:builder && npm run copy:assets",
"copy:assets": "cpx \"./src/builder/**/*.json\" ./dist/builder && cpx \"./src/builder/**/*.js\" ./dist/builder && cpx ./readme.md ./dist",
"hook-code": "npm run forms-hook && npm run common-hook",
"build:library": "node ./script/start-build-library",
"build:builder": "ts-node -P ./script/tsconfig.json ./script/build.ts ./tsconfig.builder.json",
"prepare": "husky install",
"lint": "eslint --max-warnings 0 \"./**/*.ts\"",
"forms-hook": "ts-node ./script/run-forms-hook.ts",
"common-hook": "ts-node ./script/run-common-hook.ts",
"coverage": "nyc npm run test",
"typedoc": "typedoc",
"deploy": "npm run typedoc && npm run build:library && npm run test:jasmine library && npm run coverage-badge -- init && npm run coverage && npm run coverage-badge -- success",
"coverage-badge": "ts-node ./script/coverage-badge.ts"
},
"private": true,
"author": "wszgrcy",
"license": "MIT",
"devDependencies": {
"@angular-devkit/architect": "0.1300.2",
"@angular-devkit/build-angular": "13.0.2",
"@angular-devkit/core": "13.0.2",
"@angular-devkit/schematics": "13.0.2",
"@angular/compiler": "13.0.2",
"@angular/compiler-cli": "13.0.2",
"@angular/core": "13.0.2",
"@commitlint/cli": "^13.1.0",
"@commitlint/config-conventional": "^13.1.0",
"@ngtools/webpack": "13.0.2",
"@types/fs-extra": "^9.0.12",
"@types/glob": "^7.2.0",
"@types/jasmine": "^3.7.7",
"@types/node": "^14",
"@types/webpack-sources": "^3.2.0",
"@typescript-eslint/eslint-plugin": "^4.31.0",
"@typescript-eslint/parser": "^4.31.0",
"cpx": "^1.5.0",
"cross-env": "^7.0.3",
"eslint": "^7.32.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-import": "^2.24.2",
"fs-extra": "^10.0.0",
"glob": "^7.2.0",
"husky": "^7.0.0",
"jasmine": "^3.10.0",
"mini-types": "^0.1.7",
"miniprogram-api-typings": "^3.3.2",
"ng-packagr": "13.0.6",
"prettier": "^2.4.0",
"pretty-quick": "^3.1.1",
"rimraf": "^3.0.2",
"rxjs": "6.6.7",
"static-injector": "^1.0.9",
"ts-node": "^10.4.0",
"typedoc": "^0.22.10",
"typescript": "~4.4.2",
"webpack": "5.60.0",
"zone.js": "^0.11.4"
},
"dependencies": {
"cyia-code-util": "^1.3.7",
"nyc": "^15.1.0",
"webpack-bootstrap-assets-plugin": "^2.0.3"
}
}