-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
80 lines (80 loc) · 1.75 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
{
"name": "@panhezeng/countdown",
"version": "2.0.2",
"description": "countdown",
"keywords": [
"countdown",
"javascript"
],
"homepage": "https://github.com/panhezeng/countdown-js#readme",
"bugs": {
"url": "https://github.com/panhezeng/countdown-js/issues",
"email": "[email protected]"
},
"license": "Apache-2.0",
"author": {
"name": "潘何增",
"email": "[email protected]",
"url": "http://apsay.com/"
},
"contributors": [],
"files": [
"dist",
"src",
"package.json",
"README"
],
"main": "dist/countdown.min.js",
"browser": "",
"bin": {},
"repository": {
"type": "git",
"url": "git+https://github.com/panhezeng/countdown-js.git"
},
"scripts": {
"build": "webpack --mode production",
"install:example": "cd example && npm install",
"dev:example": "cd example && npm run dev",
"build:example": "cd example && npm run build"
},
"config": {},
"devDependencies": {
"@babel/cli": "^7.7.4",
"@babel/core": "^7.7.4",
"@babel/preset-env": "^7.7.4",
"babel-eslint": "^10.0.3",
"babel-loader": "^8.0.6",
"eslint": "^6.7.2",
"eslint-config-prettier": "^6.7.0",
"eslint-plugin-prettier": "^3.1.1",
"husky": "^3.1.0",
"lint-staged": "^9.5.0",
"prettier": "^1.19.1",
"webpack": "^4.41.2",
"webpack-cli": "^3.3.10"
},
"peerdependencies": {},
"engines": {
"node": "latest",
"npm": "latest"
},
"private": false,
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.{js,ts,jsx,vue,md,json,html,css,less}": [
"prettier --write",
"git add"
]
},
"browserslist": [
"maintained node versions",
"not dead",
"> 1%",
"Firefox ESR",
"ie 11"
]
}