forked from Tencent/wepy
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
120 lines (120 loc) · 3.13 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
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
{
"name": "wepy",
"version": "1.1.8",
"description": "",
"main": "lib/wepy.js",
"scripts": {
"dev:core": "rollup -w -c scripts/config.js --environment TARGET:core",
"dev:all": "node ./scripts/build.js",
"dev:watch": "chokidar '**/*.wpy' '**/*.js' -c 'npm run dev:all' -i '/dist/'",
"docs": "cd docs && node server.js",
"prepublish": "npm run build",
"bootstrap": "./node_modules/.bin/lerna bootstrap --loglevel silly && ./scripts/install_dev.sh",
"bootstrap:prod": "./node_modules/.bin/lerna bootstrap --loglevel -- --production --no-optional && ./scripts/install_dev.sh",
"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",
"commit": "git cz"
},
"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",
"commitizen": "^2.10.1",
"cz-conventional-changelog": "^2.1.0",
"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",
"husky": "^1.0.0-rc.13",
"istanbul": "^0.4.5",
"jsonlint": "^1.6.2",
"lerna": "^3.4.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",
"validate-commit-msg": "^2.14.0"
},
"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": {},
"husky": {
"hooks": {
"commit-msg": "npx validate-commit-msg"
}
},
"config": {
"validate-commit-msg": {
"helpMessage": "\nPlease fix your commit message (and consider using http://npm.im/commitizen)\n",
"types": [
"feat",
"fix",
"docs",
"style",
"refactor",
"perf",
"test",
"chore",
"revert",
"custom"
],
"warnOnFail": false,
"autoFix": true
},
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
}
}