forked from chenbimo/yidash
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
54 lines (54 loc) · 1.29 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
{
"name": "yidash",
"version": "1.3.2",
"description": "yidash(易大师)一万个JavaScript实用方法库",
"type": "module",
"private": false,
"publishConfig": {
"access": "public",
"registry": "https://registry.npmjs.org"
},
"exports": {
".": "./index.js",
"./yidashLibNames.js": "./yidashLibNames.js"
},
"scripts": {
"gen": "jsdoc -c jsdoc.json"
},
"files": [
"lib/",
"index.js",
"LICENSE",
"package.json",
"README.md",
"yidashLibNames.js"
],
"keywords": [
"lodash",
"utils",
"helper",
"help"
],
"author": "chensuiyi <[email protected]>",
"repository": {
"type": "git",
"url": "https://github.com/chenbimo/yidash"
},
"homepage": "https://yidash.dev",
"dependencies": {
"date-fns": "^3.6.0"
},
"devDependencies": {
"docdash-extended-chensuiyi": "^1.1.1",
"jsdoc": "^4.0.3",
"lint-staged": "^15.2.7",
"prettier": "^3.3.3",
"simple-git-hooks": "^2.11.1"
},
"simple-git-hooks": {
"pre-commit": "pnpm lint-staged"
},
"lint-staged": {
"*.{js,css,scss,less,ts,jsx,vue,html,json,md,yaml}": "prettier --write"
}
}