-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
40 lines (40 loc) · 954 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
{
"name": "common-toolbox",
"version": "0.0.10",
"description": "Very practical utility library for JavaScript business projects.",
"main": "dist/index.js",
"module": "dist/index.es.js",
"type": "module",
"scripts": {
"build": "rollup -c",
"format": "prettier --write src/",
"test": "echo \"Error: no test specified\" && exit 1"
},
"keywords": [
"toolbox",
"utils",
"library",
"common"
],
"repository": {
"type": "git",
"url": "git+https://github.com/laqudee/common-toolbox.git"
},
"homepage": "https://github.com/laqudee/common-toolbox#readme",
"author": "laqudee",
"license": "MIT",
"dependencies": {
"axios": "^1.3.4",
"js-cookie": "^3.0.1",
"jsencrypt": "^3.2.1",
"qs": "^6.11.1",
"lodash": "^4.17.21",
"dayjs": "^1.11.2",
"html2canvas": "^1.4.1",
"jspdf": "^2.5.1"
},
"devDependencies": {
"prettier": "^2.8.4",
"rollup": "^3.18.0"
}
}