-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
73 lines (73 loc) · 1.75 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
{
"name": "dot",
"description": "dot cli",
"version": "0.0.0",
"author": "Chico @chico",
"bin": {
"dot": "yarn dot"
},
"bugs": "https://github.com/dot-cli/dot/issues",
"dependencies": {
"@oclif/core": "^1",
"@oclif/plugin-help": "^5",
"@oclif/plugin-plugins": "^2.0.11",
"ghauth": "chico/ghauth.git#5.0.2",
"github-api": "^3.4.0"
},
"devDependencies": {
"@babel/cli": "^7.16.7",
"@babel/core": "^7.16.7",
"@babel/node": "^7.16.7",
"@babel/preset-env": "^7.16.7",
"@oclif/test": "^2",
"@trivago/prettier-plugin-sort-imports": "^3.1.1",
"babel-plugin-add-module-exports": "^1.0.4",
"babel-plugin-module-resolver": "^4.1.0",
"chai": "^4",
"eslint": "^7.32.0",
"eslint-config-oclif": "^3.1.2",
"eslint-plugin-prettier": "^4.0.0",
"globby": "^10",
"jest": "^27.4.5",
"madge": "^5.0.1",
"prettier": "^2.5.1",
"shx": "^0.3.3",
"sinon": "^12.0.1"
},
"engines": {
"node": ">=12.0.0"
},
"files": [
"/bin",
"/npm-shrinkwrap.json",
"/oclif.manifest.json",
"/src"
],
"homepage": "https://github.com/dot-cli/dot",
"keywords": [
"oclif",
"cli",
"dot-cli",
"dot"
],
"license": "MIT",
"main": "src/index.js",
"oclif": {
"commands": "./src/commands",
"bin": "dot",
"plugins": [
"@oclif/plugin-help",
"@oclif/plugin-plugins"
]
},
"repository": "dot-cli/dot",
"scripts": {
"dot": "babel-node ./bin/run",
"dot-dev": "babel-node ./bin/dev",
"test": "jest",
"postpack": "shx rm -f oclif.manifest.json",
"posttest": "eslint . --quiet && ./node_modules/.bin/madge --circular src",
"prepack": "oclif manifest && oclif readme",
"version": "oclif readme && git add README.md"
}
}