forked from 894848652/air-weapp
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
47 lines (47 loc) · 1.24 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
{
"name": "air-weapp",
"version": "1.0.1",
"description": "微信小程序 UI 组件库",
"main": "app.js",
"directories": {
"example": "example"
},
"miniprogram": "dist",
"scripts": {
"start": "cross-env NODE_ENV=development gulp serve --gulpfile build/build.js",
"build": "cross-env NODE_ENV=production gulp build --gulpfile build/build.js",
"clean": "rm -rf dist examples/dist",
"precommit": "lint-staged"
},
"files": [
"dist"
],
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.js": "eslint"
},
"bugs": {
"url": "https://github.com/AlanZou007/air-weapp/issues"
},
"repository": "[email protected]:AlanZou007/air-weapp.git",
"author": "azou",
"license": "MIT",
"devDependencies": {
"cross-env": "^5.2.0",
"eslint": "^3.19.0",
"gulp": "^3.9.1",
"gulp-autoprefixer": "^5.0.0",
"gulp-base64": "^0.1.3",
"gulp-clean-css": "^3.9.3",
"gulp-less": "^4.0.0",
"gulp-rename": "^1.2.2",
"gulp-util": "^3.0.8",
"husky": "^1.1.2",
"less": "^2.7.3",
"lint-staged": "^7.2.0"
}
}