This repository was archived by the owner on May 25, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
61 lines (61 loc) · 1.45 KB
/
package.json
File metadata and controls
61 lines (61 loc) · 1.45 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
{
"name": "regauge",
"description": "A CLI tool to create and manage initial react project gauged with webpack and many more.",
"version": "0.5.0",
"author": "Kaustav Chakraborty @phoenixTW",
"bin": {
"regauge": "./bin/run"
},
"bugs": "https://github.com/ITChef/regauge/issues",
"dependencies": {
"@itchef/rg-lib": "git+https://git@github.com/itchef/rg-lib.git",
"@oclif/command": "1.5.13",
"@oclif/config": "1.13.0",
"@oclif/plugin-help": "2.1.6",
"cli-ux": "5.3.1",
"temp": "0.9.0"
},
"devDependencies": {
"@oclif/dev-cli": "1.22.0",
"@oclif/test": "1.2.4",
"chai": "4.2.0",
"eslint": "6.1.0",
"eslint-config-oclif": "3.1.0",
"globby": "10.0.1",
"mocha": "6.2.0",
"nyc": "14.1.1"
},
"engines": {
"node": ">=11.5.0"
},
"files": [
"/bin",
"/npm-shrinkwrap.json",
"/oclif.manifest.json",
"/src",
"/templates"
],
"homepage": "https://itchef.github.io/regauge",
"keywords": [
"oclif",
"react",
"cli",
"regauge"
],
"license": "MIT",
"main": "src/index.js",
"oclif": {
"commands": "./src/commands",
"bin": "rg",
"plugins": [
"@oclif/plugin-help"
]
},
"repository": "ITChef/regauge",
"scripts": {
"postpack": "rm -f oclif.manifest.json",
"prepack": "oclif-dev manifest && oclif-dev readme",
"test": "nyc mocha --forbid-only \"test/**/*.test.js\"",
"version": "oclif-dev readme && git add README.md"
}
}