forked from treadpit/wx_calendar
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
84 lines (84 loc) · 2.26 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
{
"name": "wx_calendar",
"version": "1.0.1",
"description": "one small calendar demo",
"main": "app.js",
"scripts": {
"dev": "gulp watch",
"build": "rm -rf component-calendar && webpack && gulp && gulp clean",
"build:example": "rm -rf example && gulp example",
"test": "jest",
"lint": "eslint src && stylelint \"src/**/*.wxss\"",
"fix:js": "eslint src --fix",
"fix:wxss": "stylelint \"src/**/*.wxss\" --fix"
},
"jest": {
"setupFiles": [
"./test/wx.js"
]
},
"husky": {
"hooks": {
"pre-commit": "lint-staged && yarn build && yarn build:example && git add .",
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS"
}
},
"lint-staged": {
"*.js": [
"yarn fix:js",
"prettier --write",
"git add ."
],
"*.wxss": [
"yarn fix:wxss",
"git add ."
]
},
"devDependencies": {
"@babel/core": "^7.5.5",
"@babel/preset-env": "^7.5.5",
"@commitlint/cli": "^8.1.0",
"@commitlint/config-conventional": "^8.1.0",
"babel-eslint": "^8.2.1",
"babel-jest": "^24.5.0",
"babel-loader": "8.0.0-beta.0",
"babel-plugin-transform-decorators-legacy": "^1.3.5",
"del": "^5.0.0",
"eslint": "^4.17.0",
"eslint-config-prettier": "^3.1.0",
"eslint-config-standard": "^11.0.0-beta.0",
"eslint-plugin-import": "^2.8.0",
"eslint-plugin-jest": "^22.4.1",
"eslint-plugin-node": "^6.0.0",
"eslint-plugin-prettier": "^3.0.0",
"eslint-plugin-promise": "^3.6.0",
"eslint-plugin-standard": "^3.0.1",
"gulp": "^4.0.2",
"gulp-debug": "^3.2.0",
"husky": "^1.1.2",
"jest": "^24.5.0",
"lint-staged": "^7.3.0",
"miniprogram-automator": "^0.9.1",
"prettier": "^1.14.3",
"stylelint": "^8.4.0",
"stylelint-config-prettier": "^4.0.0",
"stylelint-config-standard": "^18.0.0",
"stylelint-config-wxss": "^2.4.0",
"stylelint-no-z-index": "^1.1.2",
"webpack": "^4.39.2",
"webpack-cli": "^3.3.7"
},
"repository": {
"type": "git",
"url": "git+https://github.com/treadpit/wx_calendar.git"
},
"keywords": [
"wx-app"
],
"author": "treadpit",
"license": "MIT",
"bugs": {
"url": "https://github.com/treadpit/wx_calendar/issues"
},
"homepage": "https://github.com/treadpit/wx_calendar#readme"
}