-
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
34 lines (34 loc) · 919 Bytes
/
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
{
"private": true,
"name": "elodin",
"repository": "https://github.com/robinweser/elodin.git",
"author": "robinweser <[email protected]>",
"license": "MIT",
"scripts": {
"bootstrap": "lerna bootstrap --reject-cycles",
"cleanup": "lerna run clean && lerna clean --yes",
"build": "lerna run build",
"format": "prettier --write \"**/*.js\"",
"coverage": "lerna run coverage",
"release": "yarn build && yarn run check && lerna publish --force-publish",
"publish-website": "cd website && yarn deploy",
"setup": "yarn bootstrap && yarn build",
"test": "lerna run test",
"check": "yarn run test",
"postinstall": "yarn build"
},
"workspaces": [
"core/*",
"generators/*",
"plugins/*",
"examples/*",
"runtimes/*",
"utils/*",
"website"
],
"devDependencies": {
"lerna": "^3.20.2",
"prettier": "^2.0.2",
"rimraf": "^3.0.2"
}
}