-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
48 lines (48 loc) · 1.19 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
{
"name": "timer-miniprogram",
"version": "0.0.1",
"description": "小程序定时器管理库,更合理地使用 setTimeout 和 setInterval",
"main": "src/index.js",
"miniprogram": "src",
"scripts": {
"test": "jest"
},
"repository": {
"type": "git",
"url": "git+https://github.com/o2team/timer-miniprogram.git"
},
"keywords": [
"setTimeout",
"setInterval",
"miniprogram",
"微信小程序定时器"
],
"author": "jimczj",
"license": "MIT",
"lint-staged": {
"*.js": [
"eslint --quiet --cache --fix",
"git add"
]
},
"devDependencies": {
"@commitlint/cli": "7.2.1",
"@commitlint/format": "7.2.1",
"@commitlint/lint": "7.2.1",
"@commitlint/read": "^7.6.0",
"eslint": "^4.19.1",
"eslint-config-o2team-wx": "^1.0.1",
"eslint-plugin-html": "^4.0.2",
"eslint-plugin-import": "^2.18.2",
"husky": "^0.14.3",
"lint-staged": "^7.0.0",
"prettier": "^1.12.1",
"prettier-eslint": "^8.8.1",
"jest": "^24.6.0",
"@types/jest": "^24.0.18"
},
"bugs": {
"url": "https://github.com/o2team/timer-miniprogram/issues"
},
"homepage": "https://github.com/o2team/timer-miniprogram#readme"
}