-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
94 lines (94 loc) · 2.15 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
81
82
83
84
85
86
87
88
89
90
91
92
93
94
{
"name": "react-calendar-icon",
"version": "0.10.0",
"description": "A customizable date badge component in the shape of a familiar calendar icon ",
"main": "dist/react-calendar-icon.cjs.js",
"module": "dist/react-calendar-icon.esm.js",
"scripts": {
"build": "NODE_ENV=production rollup -c",
"lint": "eslint src",
"lint:watch": "esw -w src/**",
"test": "npm run test:web && npm run test:size",
"test:web": "jest",
"test:size": "bundlesize",
"prepublish": "npm run build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/kkostov/react-calendar-icon.git"
},
"keywords": [
"react",
"front-end",
"calendar",
"date"
],
"author": "Konstantin Kostov <me@kvkostov.eu>",
"license": "MIT",
"bugs": {
"url": "https://github.com/kkostov/react-calendar-icon/issues"
},
"dependencies": {
"react": ">=16",
"react-dom": ">=16"
},
"files": [
"CODE_OF_CONDUCT.md",
"dist",
"src"
],
"devDependencies": {
"@babel/core": "^7.17.9",
"@babel/preset-env": "^7.16.11",
"@babel/preset-react": "^7.16.7",
"@emotion/react": "^11.9.0",
"@emotion/styled": "^11.8.1",
"@rollup/plugin-babel": "^5.3.1",
"@typescript-eslint/parser": "^5.19.0",
"babel-jest": "^27.5.1",
"bundlesize": "^0.18.1",
"eslint": "^8.13.0",
"eslint-plugin-import": "^2.26.0",
"jest": "^27.5.1",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"rollup": "^2.70.2",
"rollup-plugin-uglify": "^6.0.4",
"rollup-plugin-visualizer": "^5.6.0"
},
"peerDependencies": {
"@emotion/react": ">=10",
"@emotion/styled": ">=10",
"react": ">=16",
"react-dom": ">=16"
},
"bundlesize": [
{
"path": "./dist/react-calendar-icon.min.js",
"threshold": "2kB"
}
],
"jest": {
"testEnvironment": "jsdom",
"testMatch": [
"**/src/**/*.test.js"
],
"transform": {
"\\.js$": [
"babel-jest",
{
"presets": [
"@babel/preset-env"
]
}
]
}
},
"browserslist": {
"production": [
">2%",
"not op_mini all",
"not IE < 12"
]
}
}