-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
81 lines (81 loc) · 1.77 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
{
"name": "bru",
"version": "1.3.0",
"description": "Bru 🤵 helps you manage monorepos",
"main": "build/index.js",
"typings": "build/index.d.ts",
"bin": {
"bru": "./build/index.js"
},
"repository": {
"type": "git",
"url": "kamilkisiela/bru"
},
"author": {
"email": "[email protected]",
"name": "Kamil Kisiela",
"url": "https://github.com/kamilkisiela"
},
"license": "MIT",
"private": false,
"keywords": [
"bru",
"cli",
"monorepo",
"tool",
"packages",
"lerna",
"yarn",
"multi-package"
],
"scripts": {
"build": "tsc",
"prebuild": "rm -rf ./build",
"prerelease": "yarn build",
"release": "npm publish",
"test": "jest",
"format": "prettier --write **/*.ts",
"examples": "(cd example/yarn && yarn) && (cd example/lerna && yarn)",
"precommit": "lint-staged"
},
"lint-staged": {
"**/*.ts": [
"prettier --write",
"git add"
]
},
"prettier": {
"bracketSpacing": false,
"singleQuote": true,
"trailingComma": "all"
},
"devDependencies": {
"@types/detect-indent": "5.0.0",
"@types/execa": "0.9.0",
"@types/jest": "23.3.10",
"@types/log-symbols": "2.0.0",
"@types/node": "10.12.18",
"@types/node-fetch": "2.1.4",
"@types/semver": "5.5.0",
"@types/shelljs": "0.8.1",
"husky": "1.3.1",
"jest": "23.6.0",
"lint-staged": "8.1.0",
"prettier": "1.15.3",
"ts-jest": "23.10.5",
"typescript": "3.2.2"
},
"dependencies": {
"chalk": "2.4.1",
"commander": "2.19.0",
"dependency-graph": "0.8.0",
"detect-indent": "5.0.0",
"execa": "1.0.0",
"glob": "7.1.3",
"immer": "1.9.3",
"log-symbols": "2.2.0",
"node-fetch": "2.3.0",
"semver": "5.6.0",
"shelljs": "0.8.3"
}
}