-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
65 lines (65 loc) · 1.79 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
{
"name": "react-use-hyphen",
"version": "1.0.0",
"description": "Use hyphenated lib with React hooks",
"author": "dvaJi <[email protected]>",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/dvaJi/react-use-hyphen.git"
},
"homepage": "https://github.com/dvaJi/react-use-hyphen",
"main": "dist/react-use-hyphen.esm.js",
"umd:main": "dist/react-use-hyphen.umd.production.js",
"module": "dist/react-use-hyphen.esm.js",
"typings": "dist/index.d.ts",
"scripts": {
"start": "tsdx watch",
"build": "tsdx build",
"lint": "tsdx lint src",
"lint:fix": "tsdx lint src --fix",
"test": "tsdx test --env=jsdom",
"test:watch": "tsdx test --env=jsdom --watch",
"test:coverage": "tsdx test --env=jsdom --coverage",
"version:alpha": "npm version prerelease --preid=alpha",
"publish:alpha": "npm publish --tag alpha",
"prepublishOnly": "tsdx build"
},
"keywords": [
"hyphenate",
"hyphenation",
"hyphenator",
"react",
"hooks"
],
"dependencies": {
"hyphenated": "^1.2.0"
},
"devDependencies": {
"@testing-library/jest-dom": "^5.11.4",
"@testing-library/react-hooks": "^3.4.1",
"@testing-library/react": "^11.0.2",
"@types/jest": "^26.0.13",
"@types/react": "^16.9.49",
"@types/react-dom": "^16.9.8",
"@types/testing-library__jest-dom": "^5.9.2",
"@types/testing-library__react": "^10.2.0",
"husky": "^4.3.0",
"prettier": "^2.1.1",
"pretty-quick": "^3.0.2",
"react": "^16.8.1",
"react-dom": "^16.8.1",
"react-test-renderer": "^16.13.1",
"tsdx": "^0.13.3",
"tslib": "^2.0.1",
"typescript": "^4.0.2"
},
"peerDependencies": {
"react": ">=16.8.1"
},
"husky": {
"hooks": {
"pre-commit": "pretty-quick --staged"
}
}
}