-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
42 lines (42 loc) · 1.1 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
{
"name": "mrbuilder-repository",
"private": true,
"version": "0.0.1",
"description": "A tool for building monorepos",
"author": "Justin Spears <[email protected]>",
"homepage": "mr-builder.github.io",
"repository": {
"type": "git+https",
"url": "https://github.com/mr-builder/mrbuilder.git"
},
"license": "MIT",
"workspaces": [
"core/*",
"presets/*",
"plugins/*",
"wiki",
"examples/*",
"create/*"
],
"dependencies": {
"lerna": "^4.0.0",
"rimraf": "^3.0.2"
},
"devDependencies": {
"typescript": "^4.1.3"
},
"publishConfig": {
"registry": "https://registry.npm.orig",
"access": "public"
},
"scripts": {
"lerna": "lerna",
"clean": "git clean -fdx --exclude=.idea --exclude=.vscode",
"prepare": "lerna run prepare --no-private",
"reset": "$npm_execpath run clean && $npm_execpath install",
"reset:test": "$npm_execpath run reset && $npm_execpath test",
"test": "lerna run test",
"prepublish:all": "lerna run prepare",
"publish:all": "lerna publish --registry http://registry.npm.org --force-publish=*"
}
}