-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpackage.json
More file actions
29 lines (29 loc) · 1.04 KB
/
package.json
File metadata and controls
29 lines (29 loc) · 1.04 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
{
"name": "jgb-transform",
"version": "1.0.0",
"main": "index.js",
"repository": "git@github.com:landn172/jgb-transform.git",
"author": "蒋瑶 <landn172@gmail.com>",
"license": "Apache-2.0",
"publishConfig": {
"access": "public",
"registry": "https://registry.npmjs.org"
},
"scripts": {
"start": "lerna bootstrap",
"release": "lerna publish",
"release:beta": "lerna publish --force-publish=* --exact --skip-temp-tag --npm-tag=beta",
"build:all": "lerna run build --parallel",
"test": "lerna run test",
"watch:all": "lerna run --parallel build -- --watch",
"sub:remote.add": "git remote add -f weapp git@github.com:jgbjs/miniprogram-demo.git",
"sub:add": "git subtree add --prefix=examples/wx2swan/src weapp master --squash",
"sub:pull": "git subtree pull --prefix=examples/wx2swan/src weapp master --squash",
"sub:push": "git subtree push --prefix=examples/wx2swan/src weapp master"
},
"devDependencies": {
"babel-core": "^6.26.3",
"babel-preset-env": "^1.7.0",
"lerna": "^3.1.4"
}
}