-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
90 lines (90 loc) · 2.17 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
{
"name": "standard-monorepo",
"version": "0.9.0",
"author": "Flávio Carvalho",
"license": "MIT",
"main": "lib/index.js",
"types": "lib/index.d.ts",
"bin": {
"standard-monorepo": "./bin/run"
},
"scripts": {
"format:all": "prettier '**/*.{js,jsx,ts,tsx,json,css}' --write",
"format:check": "prettier '**/*.{js,jsx,ts,tsx,json,css}' --check",
"build": "rm -rf lib && tsc -b",
"test": "jest",
"update:readme": "oclif-dev manifest && oclif-dev readme && rm -f oclif.manifest.json && git add README.md",
"prepublishOnly": "yarn build && yarn test && yarn update:readme"
},
"husky": {
"hooks": {
"pre-commit": "yarn update:readme",
"commit-msg": "./bin/run commit $HUSKY_GIT_PARAMS"
}
},
"dependencies": {
"@oclif/command": "^1",
"@oclif/config": "^1",
"@oclif/plugin-help": "^3",
"chalk": "4.1.0",
"execa": "^5.0.0",
"glob": "7.1.6",
"md5": "2.3.0",
"md5-file": "5.0.0",
"app-root-path": "3.0.0",
"inquirer": "^7.3.3",
"lodash": "^4.17.20",
"semver": "^7.3.4"
},
"devDependencies": {
"@oclif/dev-cli": "1.24.1",
"@types/inquirer": "7.3.1",
"@types/jest": "26.0.15",
"@types/lodash": "4.14.165",
"@types/node": "10.17.48",
"auto": "10.29.2",
"globby": "12.0.0",
"husky": "4.3.0",
"jest": "26.6.3",
"prettier": "2.2.1",
"ts-jest": "26.4.4",
"ts-node": "9.1.1",
"tslib": "2.0.3",
"typescript": "4.1.2"
},
"peerDependencies": {},
"homepage": "https://github.com/imflavio/standard-monorepo",
"bugs": "https://github.com/imflavio/standard-monorepo/issues",
"repository": "imflavio/standard-monorepo",
"oclif": {
"commands": "./lib/commands",
"bin": "standard-monorepo",
"plugins": [
"@oclif/plugin-help"
]
},
"files": [
"dist",
"src",
"/bin",
"/lib",
"/npm-shrinkwrap.json",
"/oclif.manifest.json"
],
"prettier": {
"printWidth": 80,
"semi": false,
"singleQuote": true,
"trailingComma": "all"
},
"engines": {
"node": ">=10"
},
"publishConfig": {
"registry": "https://registry.npmjs.org/"
},
"volta": {
"node": "14.15.1",
"yarn": "1.22.17"
}
}