This repository has been archived by the owner on Nov 21, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
130 lines (130 loc) · 3.49 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
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
{
"name": "@rucken/cli",
"description": "Console tools for create and build Angular7+, Bootstrap, Ionic and NestJS application based on Rucken template",
"version": "4.1.6",
"author": {
"name": "endy",
"email": "[email protected]"
},
"bin": {
"rucken": "./bin/run"
},
"dependencies": {
"@angular-devkit/schematics-cli": "^0.13.9",
"@biesbjerg/ngx-translate-extract": "^2.3.4",
"@nrwl/schematics": "^7.8.5",
"@oclif/command": "^1",
"@oclif/config": "^1",
"@oclif/plugin-help": "^2",
"@rucken/schematics": "^4.1.6",
"@schematics/angular": "^7.3.9",
"@types/inquirer": "^6.0.1",
"@types/normalize-package-data": "^2.4.0",
"@types/recursive-readdir": "^2.2.0",
"@types/replace-ext": "0.0.27",
"inquirer": "^6.3.1",
"normalize-package-data": "^2.5.0",
"npm-run": "^5.0.1",
"po2json": "^1.0.0-alpha",
"prettier": "^1.17.0",
"recursive-readdir": "^2.2.2",
"replace-ext": "^1.0.0",
"sort-paths": "^1.1.1",
"stringify-object": "^3.3.0",
"tslib": "^1"
},
"devDependencies": {
"@angular-devkit/schematics": "^7.3.9",
"@oclif/dev-cli": "^1",
"@oclif/test": "^1",
"@oclif/tslint": "^3",
"@types/chai": "^4",
"@types/glob": "^7.1.1",
"@types/mocha": "^5",
"@types/node": "~12.0.0",
"@types/yargs": "^13.0.0",
"chai": "^4",
"conventional-changelog-cli": "^2.0.21",
"conventional-commits-detector": "^1.0.2",
"conventional-recommended-bump": "^5.0.0",
"globby": "^9",
"mocha": "^6",
"npm-run-all": "^4.1.5",
"nyc": "^14",
"rimraf": "^2.6.3",
"ts-node": "~8.1.0",
"tslint": "^5",
"typescript": "^3.2.4"
},
"engines": {
"node": ">=11",
"npm": ">=6.5.0"
},
"files": [
"/scripts/patch.js",
"/bin",
"/lib",
"/npm-shrinkwrap.json",
"/oclif.manifest.json"
],
"keywords": [
"cli",
"nx",
"workspace",
"ngx",
"angular7",
"nestjs",
"ionic",
"bootstrap",
"rucken",
"admin",
"ui",
"backend",
"mobile",
"frontend",
"application",
"boilerplate",
"seed",
"i18n",
"ssr",
"utils",
"oclif"
],
"bugs": {
"url": "https://github.com/rucken/cli/issues"
},
"homepage": "https://github.com/rucken/cli",
"repository": {
"type": "git",
"url": "git+https://github.com/rucken/cli.git"
},
"license": "MIT",
"main": "lib/index.js",
"oclif": {
"commands": "./lib/commands",
"bin": "rucken",
"plugins": [
"@oclif/plugin-help"
]
},
"scripts": {
"postpack": "rimraf oclif.manifest.json npm-shrinkwrap.json",
"posttest": "tsc -p test --noEmit && tslint -p test -t stylish",
"prepack": "rimraf lib && tsc && oclif-dev manifest && npm shrinkwrap",
"prepare": "rimraf lib && tsc",
"postinstall": "node ./scripts/patch.js",
"watch": "rimraf lib && tsc --watch",
"test": "nyc mocha --forbid-only \"./test/{,!(fixtures)/**}/*.test.ts\" --timeout 1000000 && sh ./scripts/create-fixtures.sh",
"readme": "oclif-dev readme && git add README.md",
"run-translate": "node ./bin/run translate test/fixtures/translate/folder1 -f po -c -p Core",
"run-version-updater": "node ./bin/run version-updater test/fixtures/version-updater/folder1 -r test/fixtures/version-updater",
"run-config": "node ./bin/run config test/fixtures/config/dev -m dev",
"run-prepare": "node ./bin/run prepare test/fixtures/prepare -m dev"
},
"greenkeeper": {
"ignore": [
"typescript"
]
},
"types": "lib/index.d.ts"
}