-
Notifications
You must be signed in to change notification settings - Fork 131
Expand file tree
/
Copy pathpackage.json
More file actions
28 lines (28 loc) · 778 Bytes
/
package.json
File metadata and controls
28 lines (28 loc) · 778 Bytes
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
{
"name": "yoshi-monorepo",
"scripts": {
"bootstrap": "lerna bootstrap",
"postinstall": "npm run bootstrap",
"test": "lerna exec --concurrency 1 -- npm test",
"build": "eslint .",
"customPublish": "lerna exec --concurrency 1 -- npm run customPublish",
"createVersion": "node scripts/createVersion"
},
"devDependencies": {
"babel-eslint": "^8.2.3",
"chalk": "^2.4.1",
"eslint": "^4.19.1",
"eslint-config-prettier": "^2.9.0",
"eslint-plugin-import": "^2.11.0",
"eslint-plugin-prettier": "^2.6.0",
"lerna": "^2.11.0",
"lodash": "^4.17.10",
"prettier": "^1.12.1",
"prompts": "^0.1.8",
"rimraf": "^2.6.2",
"semver": "^5.5.0"
},
"publishConfig": {
"registry": "https://registry.npmjs.org/"
}
}