This repository has been archived by the owner on Oct 10, 2022. It is now read-only.
-
-
Notifications
You must be signed in to change notification settings - Fork 327
/
package.json
46 lines (46 loc) · 1.69 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
{
"private": true,
"workspaces": [
"packages/*"
],
"repository": {
"type": "git",
"url": "git+https://github.com/ahmadawais/create-guten-block.git"
},
"author": "AhmadAwais",
"bugs": {
"url": "https://github.com/ahmadawais/create-guten-block/issues"
},
"homepage": "https://github.com/ahmadawais/create-guten-block#readme",
"devDependencies": {
"babel-eslint": "^8.2.1",
"chalk": "^2.4.2",
"eslint": "^4.17.0",
"eslint-config-wordpress": "^2.0.0",
"eslint-plugin-jest": "^21.7.0",
"eslint-plugin-jsx-a11y": "^6.2.1",
"eslint-plugin-react": "^7.13.0",
"eslint-plugin-wordpress": "^0.1.0",
"execa": "^1.0.0",
"lerna": "^2.8.0",
"ora": "^1.3.0",
"shelljs": "^0.8.3",
"update-notifier": "^3.0.0"
},
"scripts": {
"create-guten-block": "node tasks/cgb.js",
"demo": "node tasks/cgb.js demo",
"cgb": "node packages/create-guten-block/index.js",
"startCGB": "node packages/cgb-scripts/scripts/start.js",
"changelog": "lerna-changelog",
"updated": "lerna updated",
"beforepublish": "lerna bootstrap",
"publishScript": "bash tasks/publish.sh && echo 'Now update dependency packages.'",
"publishNPM": "bash tasks/publish.sh --npm-client=npm",
"lerna": "yarn && lerna updated && lerna bootstrap && lerna publish --independent --npm-client=npm",
"publishCanary": "yarn && lerna bootstrap && lerna publish --independent --npm-client=npm --canary",
"release": "yarn && lerna updated && lerna bootstrap && lerna publish --independent --npm-client=npm",
"release-npm": "lerna updated && lerna bootstrap && lerna publish --independent --npm-client=npm",
"release-canary": "yarn && lerna updated && lerna bootstrap && lerna publish --independent --npm-client=npm --canary"
}
}