forked from Tencent/wepy
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
86 lines (86 loc) · 2.31 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
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
{
"name": "wepy",
"version": "1.1.8",
"description": "",
"main": "lib/wepy.js",
"scripts": {
"dev:wepy2": "rollup -w -c scripts/config.js --environment TARGET:wepy2",
"docs": "cd docs && node server.js",
"prepublish": "npm run build",
"bootstrap": "./scripts/clean.sh && ./scripts/bootstrap.sh && npm run build",
"bootstrap:prod": "./scripts/clean.sh && ./scripts/bootstrap.sh --only=dev && npm run build && ./scripts/clean.sh --production && ./scripts/bootstrap.sh --production",
"build": "node ./node_modules/gulp/bin/gulp build",
"watch-compile": "npm run build -- --watch",
"watch": "node ./node_modules/gulp/bin/gulp watch",
"test": "./scripts/test.sh",
"clean": "./scripts/clean.sh",
"publish": "npm run test && ./node_modules/.bin/lerna publish"
},
"repository": {
"type": "git",
"url": "[email protected]:Tencent/wepy.git"
},
"author": "Gcaufy",
"license": "MIT",
"bugs": {
"url": "https://github.com/Tencent/wepy/issues"
},
"homepage": "https://github.com/Tencent/wepy#readme",
"devDependencies": {
"babel": "^6.5.2",
"babel-cli": "^6.18.0",
"babel-eslint": "^7.1.1",
"babel-preset-es2015": "^6.18.0",
"babel-preset-stage-1": "^6.16.0",
"chai": "^4.1.2",
"chalk": "^1.1.3",
"eslint": "^3.11.1",
"event-stream": "^3.3.4",
"fs-extra": "^5.0.0",
"gulp": "^3.9.1",
"gulp-babel": "^6.1.2",
"gulp-clean": "^0.3.2",
"gulp-less": "^3.3.2",
"gulp-line-ending-corrector": "^1.0.1",
"gulp-newer": "^1.3.0",
"gulp-plumber": "^1.1.0",
"gulp-util": "^3.0.7",
"gulp-watch": "^4.3.11",
"istanbul": "^0.4.5",
"jsonlint": "^1.6.2",
"lerna": "^2.8.0",
"less": "^2.7.3",
"mkpath": "^1.0.0",
"mocha": "^3.2.0",
"rollup": "^0.56.5",
"rollup-plugin-buble": "^0.19.2",
"rollup-plugin-replace": "^2.0.0",
"serve-static": "^1.11.1",
"through2": "^2.0.3"
},
"babel": {
"comments": false,
"presets": [
[
"es2015",
{
"loose": true
}
],
"stage-1"
],
"plugins": [],
"ignore": [
"./packages/wepy-web/src/components/*.vue"
],
"env": {
"test": {
"auxiliaryCommentBefore": "istanbul ignore next",
"plugins": [
"istanbul"
]
}
}
},
"dependencies": {}
}