-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
57 lines (57 loc) · 1.29 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
{
"name": "recontrib",
"version": "0.3.1",
"license": "MIT",
"homepage": "https://pantharshit00.github.io/recontrib",
"author": "Harshit Pant <pantharshit00@gmail.com>",
"main": "dist/index.js",
"umd:main": "dist/recontrib.umd.production.js",
"module": "dist/recontrib.es.production.js",
"typings": "dist/index.d.ts",
"repository": {
"type": "git",
"url": "https://github.com/pantharshit00/recontrib"
},
"files": [
"dist"
],
"scripts": {
"start": "tsdx watch",
"build": "tsdx build",
"test": "tsdx test --env=jsdom"
},
"peerDependencies": {
"@reach/tooltip": "~0.2.0",
"react": ">=16"
},
"husky": {
"hooks": {
"pre-commit": "pretty-quick --staged"
}
},
"prettier": {
"printWidth": 80,
"semi": true,
"singleQuote": true,
"trailingComma": "es5"
},
"devDependencies": {
"@types/jest": "^24.0.13",
"@types/react": "^16.8.17",
"@types/react-dom": "^16.8.4",
"husky": "^2.3.0",
"prettier": "^1.17.1",
"pretty-quick": "^1.10.0",
"prop-types": "^15.7.2",
"react": "^16.8.0",
"react-dom": "^16.8.0",
"tsdx": "^0.5.11",
"tslib": "^1.9.3",
"typescript": "^3.4.5"
},
"dependencies": {
"@reach/portal": "^0.2.1",
"@reach/tooltip": "^0.2.0",
"dayjs": "^1.8.14"
}
}