This repository has been archived by the owner on Jul 6, 2021. It is now read-only.
-
-
Notifications
You must be signed in to change notification settings - Fork 104
/
Copy pathpackage.json
88 lines (88 loc) · 1.84 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
85
86
87
88
{
"name": "vue-timeago",
"version": "5.0.0",
"productName": "Vue Timeago",
"description": "A timeago filter for Vue.",
"license": "MIT",
"repository": "egoist/vue-timeago",
"author": {
"name": "EGOIST",
"email": "[email protected]",
"url": "https://github.com/egoist"
},
"scripts": {
"test": "xo && npm run build",
"build": "bili",
"prepublishOnly": "npm run build",
"example": "poi example/index.js -so"
},
"main": "dist/vue-timeago.cjs.js",
"module": "dist/vue-timeago.es.js",
"unpkg": "dist/vue-timeago.js",
"jsdelivr": "dist/vue-timeago.js",
"cdn": "dist/vue-timeago.js",
"files": [
"dist"
],
"keywords": [
"timeago",
"vue",
"filter"
],
"devDependencies": {
"@egoist/vue-to-react": "^1.1.0",
"bili": "^4.7.0",
"commitizen": "^3.0.7",
"cz-conventional-changelog": "^2.1.0",
"demoboard": "^0.3.1",
"eslint-config-prettier": "^4.1.0",
"eslint-config-rem": "^4.0.0",
"eslint-plugin-prettier": "^3.0.1",
"gh-pages": "^1.0.0",
"husky": "^1.3.1",
"lint-staged": "^8.1.5",
"poi": "^12.10.3",
"postcss-nested": "^4.1.2",
"prettier": "^1.16.4",
"raw-loader": "^3.0.0",
"semantic-release": "^17.3.6",
"vue": "^2.6.9",
"vue-template-compiler": "^2.6.9",
"xo": "^0.24.0"
},
"xo": {
"extends": [
"rem",
"plugin:prettier/recommended"
],
"ignores": [
"example/**"
]
},
"dependencies": {
"date-fns": "^1.29.0"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.{ts,json,md}": [
"prettier --write",
"git add"
],
"src/*.js": [
"xo --fix",
"git add"
]
},
"release": {
"branch": "master"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
}
}