-
Notifications
You must be signed in to change notification settings - Fork 11
/
Copy pathpackage.json
71 lines (71 loc) · 1.46 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
{
"name": "@femessage/update-popup",
"version": "1.0.1",
"description": "Display an update message at right bottom",
"author": "https://github.com/FEMessage",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/FEMessage/update-popup.git"
},
"keywords": [
"vue",
"sfc",
"component",
"update"
],
"files": [
"src",
"utils",
"index.js",
"nuxt.js",
"poi.js"
],
"main": "index.js",
"scripts": {
"test": "jest --verbose",
"stdver": "standard-version -m '[skip ci] chore(release): v%s'",
"release": "gren release --override"
},
"dependencies": {
"fs-extra": "^9.0.1",
"lodash.get": "^4.4.2",
"vercel-toast": "^1.4.0"
},
"devDependencies": {
"@babel/core": "^7.4.3",
"@babel/preset-env": "^7.4.3",
"@femessage/github-release-notes": "^0.19.0",
"husky": "1.3.1",
"jest": "^24.8.0",
"lint-staged": "^8.1.0",
"prettier": "1.18.2",
"standard-version": "^6.0.1"
},
"publishConfig": {
"access": "public"
},
"vue-sfc-cli": "1.11.4",
"engines": {
"node": ">= 8.3.0",
"npm": ">= 3.0.0"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged",
"post-commit": "git update-index --again",
"pre-push": "yarn test"
}
},
"lint-staged": {
"*.@(md|json)": [
"prettier --write",
"git add"
],
"*.js": [
"prettier --write",
"git add"
]
},
"gren": "@femessage/grenrc"
}