-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
65 lines (65 loc) · 1.61 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
{
"name": "kh-tool",
"version": "0.1.5",
"description": "前端工具库",
"main": "lib/index.js",
"module": "lib/index.esm.js",
"types": "lib/src/index.d.ts",
"scripts": {
"build": "rollup -c",
"dev": "rollup -c -w",
"test": "jest --coverage --verbose -u",
"doc": "./node_modules/.bin/typedoc --out ./docs ./src",
"pkg": "./node_modules/.bin/ypkgfiles"
},
"repository": {
"type": "git",
"url": "git+https://github.com/wsz7777/kh-tool.git"
},
"keywords": [
"function",
"tool",
"fontend",
"fe",
"lodash"
],
"author": "wsz",
"license": "ISC",
"bugs": {
"url": "https://github.com/wsz7777/kh-tool/issues"
},
"homepage": "https://github.com/wsz7777/kh-tool#readme",
"devDependencies": {
"@babel/preset-env": "^7.13.10",
"@types/crypto-js": "^4.0.1",
"@types/jest": "^26.0.20",
"@typescript-eslint/eslint-plugin": "^4.17.0",
"@typescript-eslint/parser": "^4.17.0",
"eslint": "^7.21.0",
"eslint-plugin-jest": "^24.2.1",
"jest": "^26.6.3",
"rollup": "^2.41.1",
"rollup-plugin-babel": "^4.4.0",
"rollup-plugin-clear": "^2.0.7",
"rollup-plugin-commonjs": "^10.1.0",
"rollup-plugin-eslint": "^7.0.0",
"rollup-plugin-node-resolve": "^5.2.0",
"rollup-plugin-typescript2": "^0.30.0",
"ts-jest": "^26.5.3",
"typedoc": "^0.20.30",
"typescript": "^4.2.3",
"ypkgfiles": "^1.6.0"
},
"dependencies": {
"crypto-js": ">=4.0.0",
"identity-obj-proxy": "^3.0.0"
},
"peerDependencies": {
"crypto-js": ">=4.0.0"
},
"files": [
"lib/src",
"lib/index.js",
"lib/index.esm.js"
]
}