-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
43 lines (43 loc) · 961 Bytes
/
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
{
"name": "cool-utils",
"version": "1.0.9",
"description": "Useful utils.",
"files": [
"es",
"dist"
],
"main": "dist/index.js",
"module": "dist/index.esm.js",
"types": "dist/index.d.ts",
"sideEffects": false,
"authors": {
"name": "Xuheng Liu",
"email": "[email protected]"
},
"repository": "https://github.com/BH-M87/cool-utils",
"scripts": {
"dev": "father doc dev",
"build": "father build"
},
"peerDependencies": {
"react": "16.x"
},
"devDependencies": {
"@types/classnames": "^2.2.10",
"@types/lodash-es": "^4.17.3",
"@types/url-search-params": "^1.1.0",
"eslint": "^6.6.0",
"eslint-config-cool": "^0.3.2",
"father": "^2.16.0",
"react": "16.x",
"tslint": "^6.1.2",
"typescript": "^3.9.6"
},
"license": "MIT",
"dependencies": {
"axios": "^0.19.0",
"classnames": "^2.2.6",
"lodash-es": "^4.17.15",
"url-search-params": "^1.1.0"
}
}