-
Notifications
You must be signed in to change notification settings - Fork 3k
/
Copy pathpackage.json
132 lines (132 loc) · 3.51 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
121
122
123
124
125
126
127
128
129
130
131
132
{
"name": "wepy",
"version": "1.1.8",
"description": "",
"main": "lib/wepy.js",
"scripts": {
"lint": "eslint ./ --ext .js",
"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",
"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": "npm run lint && ./scripts/test.sh",
"clean": "./scripts/clean.sh",
"publish": "./scripts/npm_publish/index.js publish",
"pub": "./node_modules/.bin/verpub publish",
"pub:dry": "./node_modules/.bin/verpub publish --dry-run",
"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": "^3.1.1",
"cz-conventional-changelog": "^2.1.0",
"enquirer": "^2.3.0",
"eslint": "^4.19.1",
"eslint-config-prettier": "^6.4.0",
"eslint-plugin-prettier": "^3.1.1",
"esm": "^3.2.25",
"event-stream": "3.3.4",
"fs-extra": "^5.0.0",
"gulp": "^4.0.2",
"gulp-babel": "^6.1.2",
"gulp-clean": "^0.3.2",
"gulp-less": "^4.0.1",
"gulp-line-ending-corrector": "^1.0.1",
"gulp-newer": "^1.3.0",
"gulp-plumber": "^1.1.0",
"gulp-util": "^3.0.7",
"gulp-watch": "^5.0.1",
"husky": "^1.0.0-rc.13",
"istanbul": "^0.4.5",
"jsonlint": "^1.6.2",
"lerna": "^3.15.0",
"less": "^3.9.0",
"mkpath": "^1.0.0",
"mocha": "^6.1.4",
"prettier": "^1.18.2",
"read-pkg": "^4.0.1",
"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",
"verpub": "0.0.1"
},
"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": {
"pre-commit": "npm run test",
"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",
"build",
"release",
"custom"
],
"warnOnFail": false,
"autoFix": true
},
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
}
}