-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathpackage.json
More file actions
30 lines (30 loc) · 1.1 KB
/
package.json
File metadata and controls
30 lines (30 loc) · 1.1 KB
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
{
"name": "jgb",
"version": "1.0.1",
"main": "index.js",
"author": "landn172 <landn172@gmail.com>",
"license": "Apache-2.0",
"repository": {
"type": "git",
"url": "git+https://github.com/jgbjs/jgb.git"
},
"homepage": "https://github.com/jgbjs/jgb",
"scripts": {
"start": "yarn run bootstrap",
"bootstrap": "lerna bootstrap",
"build:all": "yarn run build",
"build": "tsc -b packages/jgb-shared packages/jgb-cli packages/jgb-plugin-babel packages/jgb-plugin-css packages/jgb-plugin-html packages/jgb-plugin-json packages/jgb-plugin-less packages/jgb-plugin-typescript packages/jgb-plugin-wxs packages/jgb-preset-aliapp packages/jgb-preset-weapp",
"clean:all": "lerna run clean",
"watch:all": "yarn run build --watch",
"release": "lerna publish --force-publish=* --exact",
"release:beta": "lerna publish --force-publish=* --exact --npm-tag=beta",
"test": "lerna exec --scope jgb-* -- yarn test"
},
"devDependencies": {
"@types/jest": "^23.3.12",
"@types/node": "^12.12.6",
"js-yaml": "^3.13.1",
"lerna": "^3.22.1",
"typescript": "^3.7.2"
}
}