-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
64 lines (64 loc) · 1.51 KB
/
package.json
File metadata and controls
64 lines (64 loc) · 1.51 KB
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
{
"name": "coretools",
"description": "JavaScript utility library inspired by developer experience and lodash.",
"version": "2.0.2",
"license": "MIT",
"files": [
"dist"
],
"repository": {
"type": "git",
"url": "https://www.github.com/team-chesters/coretools.git"
},
"bugs": {
"url": "https://www.github.com/team-chesters/coretools/issues",
"email": "che5ya@naver.com"
},
"homepage": "https://www.github.com/team-chesters/coretools",
"keywords": [
"javascript",
"functions",
"tools",
"util",
"utility",
"coretools",
"lodash",
"helper"
],
"type": "module",
"main": "./dist/coretools.umd.js",
"module": "./dist/coretools.es.js",
"exports": {
".": {
"import": "./dist/coretools.es.js",
"require": "./dist/coretools.umd.js"
}
},
"scripts": {
"dev": "vite",
"build": "vite build",
"preview": "vite preview",
"prepare": "husky install",
"lint": "eslint ./src/**/*.js",
"test": "jest"
},
"devDependencies": {
"@babel/core": "^7.23.7",
"@babel/preset-env": "^7.23.7",
"babel-jest": "^29.7.0",
"eslint": "^8.56.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-prettier": "^5.1.2",
"husky": "^8.0.3",
"jest": "^29.7.0",
"jest-environment-jsdom": "^29.7.0",
"lint-staged": "^15.2.0",
"prettier": "^3.1.1",
"vite": "^5.0.10"
},
"dependencies": {
"date-fns": "^3.0.6"
}
}