-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
46 lines (46 loc) · 1.12 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
{
"name": "react-tab-controller",
"version": "0.2.1",
"repository": "git://github.com/lucasecdb/react-tab-controller.git",
"main": "dist/index.js",
"umd:main": "dist/react-tab-controller.umd.production.js",
"module": "dist/react-tab-controller.es.production.js",
"typings": "dist/index.d.ts",
"files": [
"dist"
],
"scripts": {
"start": "tsdx watch",
"build": "tsdx build",
"test": "tsdx test --env=jsdom",
"update-changelog": "node ./scripts/update-changelog",
"release": "release-it"
},
"peerDependencies": {
"react": "^16.8.0"
},
"husky": {
"hooks": {
"pre-commit": "pretty-quick --staged"
}
},
"devDependencies": {
"@lucasecdb/eslint-config": "^0.3.6",
"@types/jest": "^24.0.12",
"@types/react": "^16.8.17",
"@types/react-dom": "^16.8.4",
"eslint": "^5.16.0",
"husky": "^2.2.0",
"prettier": "^1.17.0",
"pretty-quick": "^1.10.0",
"react": "^16.8.6",
"react-dom": "^16.8.6",
"release-it": "^12.2.0",
"tsdx": "^0.5.9",
"tslib": "^1.9.3",
"typescript": "^3.4.5"
},
"dependencies": {
"tiny-warning": "^1.0.2"
}
}