-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathpackage.json
112 lines (112 loc) · 2.86 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
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
{
"name": "@time-input-polyfill/react",
"version": "2.0.2",
"description": "A pre-built, plug-and-play, fully accessible React component that will produce an `input[type='time']` element with a built in polyfill for IE and Safari support.",
"main": "index.js",
"private": false,
"repository": {
"type": "git",
"url": "git+https://github.com/Dan503/react-time-input-polyfill.git"
},
"keywords": [
"React",
"time",
"input",
"polyfill",
"IE",
"accessible",
"accessibility",
"a11y"
],
"author": "Daniel Tonon",
"license": "MIT",
"bugs": {
"url": "https://github.com/Dan503/react-time-input-polyfill/issues"
},
"homepage": "https://dan503.github.io/react-time-input-polyfill/",
"dependencies": {
"@dan503/load-js": "^1.0.7",
"@time-input-polyfill/utils": "^1.0.4"
},
"peerDependencies": {
"react": "^17.0.2"
},
"devDependencies": {
"@babel/plugin-proposal-private-methods": "^7.16.11",
"@babel/plugin-transform-runtime": "^7.17.0",
"@babel/preset-env": "^7.16.11",
"@rollup/plugin-babel": "^5.3.1",
"@rollup/plugin-commonjs": "^21.0.2",
"@rollup/plugin-node-resolve": "^13.1.3",
"@testing-library/jest-dom": "^5.16.2",
"@testing-library/react": "^12.1.3",
"@testing-library/user-event": "^13.5.0",
"@time-input-polyfill/tests": "^1.0.0",
"@types/react-dom": "^17.0.13",
"@types/react-syntax-highlighter": "^13.5.2",
"copyfiles": "^2.4.1",
"core-js": "^3.21.1",
"cypress": "^9.5.1",
"cypress-plugin-tab": "^1.0.5",
"cypress-promise": "^1.1.0",
"del-cli": "^4.0.1",
"eslint-plugin-cypress": "^2.12.1",
"npm-run-all": "^4.1.5",
"react-app-polyfill": "^3.0.0",
"react-dom": "^17.0.2",
"react-scripts": "^4.0.3",
"react-syntax-highlighter": "^15.4.5",
"rollup": "^2.69.1",
"rollup-plugin-terser": "^7.0.2",
"typescript": "^4.6.2"
},
"scripts": {
"start": "node node_modules/react-scripts/scripts/start.js",
"build": "node node_modules/react-scripts/scripts/build.js && npm run copy",
"copy": "npx copyfiles -u 1 build/**/* docs",
"test": "run-p start cy",
"cy": "cypress open",
"ts": "tsc --project tsconfig.npm.json",
"prepublishOnly": "run-p ts build",
"postpublish": "npm run clean",
"clean": "del-cli index.js index.d.ts src/core/index.js src/core/index.d.ts src/core/TimeInputPolyFill.js src/core/TimeInputPolyFill.d.ts"
},
"eslintConfig": {
"extends": "react-app"
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all",
"IE 11"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version",
"last 1 ie version"
]
},
"babel": {
"presets": [
"react-app"
]
},
"prettier": {
"singleQuote": true,
"semi": false,
"useTabs": true,
"trailingComma": "all",
"overrides": [
{
"files": "README.md",
"options": {
"useTabs": false,
"tabWidth": 4,
"trailingComma": "es5"
}
}
]
}
}