-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
49 lines (49 loc) · 1.17 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
{
"name": "material-duration-picker",
"description": "React Material component for durations inspired by Material-UI Pickers",
"keywords": [
"react",
"duration",
"material-design",
"material-ui",
"datepicker",
"duration-picker",
"durations"
],
"version": "1.4.4",
"license": "MIT",
"main": "dist/index.js",
"author": "tran-simon",
"repository": "https://github.com/tran-simon/material-duration-picker",
"peerDependencies": {
"@material-ui/core": "^4.9.1",
"@types/react": "^16.8.4",
"@types/react-dom": "^16.9.0",
"react": "^16.8.4",
"react-dom": "^16.8.4"
},
"devDependencies": {
"@material-ui/core": "^4.9.1",
"@testing-library/jest-dom": "^5.12.0",
"@testing-library/react": "^11.2.6",
"@types/jest": "^26.0.23",
"@types/node": "^12.0.0",
"@types/react": "^16.8.4",
"@types/react-dom": "^16.9.0",
"jest": "^26.6.3",
"react": "^16.8.4",
"react-dom": "^16.8.4",
"ts-jest": "^26.5.5",
"typescript": "^4.2.4"
},
"scripts": {
"build": "tsc",
"start": "tsc -w",
"test": "jest",
"clean": "rm -rf dist node_modules",
"deploy": "npm run clean && npm install && npm run build && npm run test && npm publish"
},
"files": [
"dist"
]
}