-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
80 lines (80 loc) · 2.35 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
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
{
"name": "mirine.tools",
"version": "0.0.2",
"description": "한국인 개발자가 자주 사용하는 자바스크립트 도구 모음",
"main": "build/index.js",
"scripts": {
"start": "webpack serve --config webpack.config.demo.js",
"build": "webpack",
"build:dist": "webpack --config webpack.config.dist.js",
"build:demo": "webpack --config webpack.config.demo.js",
"test": "jest",
"doc": "jsdoc -c jsdoc.json -R README.md",
"prepare": "npm run build",
"trypublish": "npm publish || true",
"release": "standard-version"
},
"repository": {
"type": "git",
"url": "https://github.com/hkcho/mirine.tools"
},
"author": "조현권 <eddie88cho@gmail.com> (https://github.com/hkcho)",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/hkcho/mirine.tools/issues"
},
"homepage": "https://github.com/hkcho/mirine.tools",
"keywords": [
"mirine",
"미리내",
"한국",
"korea",
"korean"
],
"devDependencies": {
"@babel/cli": "^7.16.7",
"@babel/core": "^7.16.7",
"@babel/eslint-parser": "^7.16.5",
"@babel/plugin-proposal-class-properties": "^7.16.7",
"@babel/polyfill": "^7.12.1",
"@babel/preset-env": "^7.16.7",
"babel-loader": "^8.2.3",
"babel-preset-minify": "^0.5.1",
"eslint": "^8.6.0",
"eslint-config-airbnb": "^19.0.4",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-import": "^2.25.4",
"eslint-plugin-jsx-a11y": "^6.5.1",
"eslint-plugin-prettier": "^4.0.0",
"eslint-plugin-react": "^7.28.0",
"eslint-plugin-react-hooks": "^4.3.0",
"file-loader": "^6.2.0",
"html-webpack-plugin": "^5.5.0",
"jest": "^27.4.7",
"jsdoc": "^3.6.7",
"prettier": "^2.5.1",
"prettier-webpack-plugin": "^1.2.0",
"standard-version": "^9.3.2",
"terser-webpack-plugin": "^5.3.0",
"url-loader": "^4.1.1",
"webpack": "^5.65.0",
"webpack-cli": "^4.9.1",
"webpack-dev-server": "^4.7.2"
},
"jest": {
"moduleNameMapper": {
"\\.(jpg|jpeg|png|gif|eot|otf|webp|svg|ttf|woff|woff2|mp4|webm|wav|mp3|m4a|aac|oga)$": "<rootDir>/scripts/testMock.js",
"\\.(css|less)$": "<rootDir>/scripts/testMock.js"
}
},
"funding": [
{
"type": "individual",
"url": "https://paypal.me/eddie88cho"
},
{
"type": "patreon",
"url": "https://www.patreon.com/eddie88cho"
}
]
}