-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
81 lines (81 loc) · 1.91 KB
/
package.json
File metadata and controls
81 lines (81 loc) · 1.91 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
75
76
77
78
79
80
81
{
"name": "k-react-cm",
"description": "manages your project components from cli",
"version": "4.1.0",
"author": "kostayne",
"bin": {
"k-react-cm": "./bin/run"
},
"bugs": "https://github.com/Kostayne/react-cm/issues",
"dependencies": {
"@oclif/command": "^1.8.0",
"@oclif/config": "^1.17.0",
"@oclif/plugin-help": "^3.2.3",
"@types/cli": "^0.11.20",
"@types/rimraf": "^3.0.2",
"ajv": "^8.6.3",
"change-case": "^4.1.2",
"oclif": "^1.18.1",
"pascal-case": "^3.1.2",
"tslib": "^1.14.1"
},
"devDependencies": {
"@oclif/dev-cli": "^1.26.0",
"@oclif/test": "^1.2.8",
"@types/chai": "^4.2.22",
"@types/jest": "^29.5.2",
"@types/node": "^10.17.60",
"@types/react": "^17.0.26",
"chai": "^4.3.4",
"eslint": "^5.16.0",
"eslint-config-oclif": "^3.1.0",
"eslint-config-oclif-typescript": "^0.1.0",
"globby": "^10.0.2",
"jest": "^29.5.0",
"mocha": "^5.2.0",
"nyc": "^14.1.1",
"react": "^17.0.2",
"rimraf": "^3.0.2",
"ts-jest": "^29.1.0",
"ts-node": "^8.10.2",
"typescript": "4.4.4"
},
"engines": {
"node": ">=8.0.0"
},
"files": [
"/bin",
"/lib",
"/npm-shrinkwrap.json",
"/oclif.manifest.json"
],
"homepage": "https://github.com/Kostayne/react-cm",
"keywords": [
"oclif",
"react",
"cli",
"manager",
"components",
"component",
"react-component"
],
"license": "Apache 2.0",
"main": "index.js",
"oclif": {
"commands": "./lib/commands",
"bin": "k-react-cm",
"plugins": [
"@oclif/plugin-help"
]
},
"repository": "Kostayne/react-cm",
"scripts": {
"build": "rm -rf lib && rm -f tsconfig.tsbuildinfo && tsc",
"build-run": "npm run build && ./bin/run",
"postpack": "rimraf oclif.manifest.json",
"prepack": "tsc -b && oclif-dev manifest",
"version": "oclif-dev readmed",
"test": "jest"
},
"types": "lib/index.d.ts"
}