-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
54 lines (54 loc) · 1.11 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
{
"name": "underline-emphasis",
"description": "UnderlineEmphasis React component",
"author": "Cameron Chamberlain",
"license": "MIT",
"version": "0.1.3",
"main": "dist/index.js",
"module": "dist/underline-emphasis.esm.js",
"typings": "dist/index.d.ts",
"files": [
"dist"
],
"scripts": {
"start": "tsdx watch",
"build": "tsdx build",
"test": "tsdx test --env=jsdom",
"lint": "tsdx lint"
},
"peerDependencies": {
"react": ">=16"
},
"husky": {
"hooks": {
"pre-commit": "tsdx lint"
}
},
"prettier": {
"printWidth": 80,
"semi": true,
"singleQuote": true,
"trailingComma": "es5"
},
"renovate": {
"extends": [
"@ahmdigital"
]
},
"devDependencies": {
"@types/jest": "29.5.12",
"@types/react": "17.0.80",
"@types/react-dom": "17.0.25",
"@types/react-test-renderer": "18.3.0",
"husky": "4.3.8",
"react": "16.14.0",
"react-dom": "16.14.0",
"react-test-renderer": "16.14.0",
"tsdx": "0.13.3",
"tslib": "1.14.1",
"typescript": "3.9.10"
},
"dependencies": {
"tiny-invariant": "^1.1.0"
}
}