-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
42 lines (42 loc) · 882 Bytes
/
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
{
"name": "react-data-props",
"version": "1.1.1",
"author": "Tim Seckinger",
"license": "MIT",
"module": "dist/react-data-props.esm.js",
"main": "dist/index.js",
"typings": "dist/index.d.ts",
"files": [
"dist"
],
"scripts": {
"start": "tsdx watch",
"build": "tsdx build",
"test": "tsdx test --passWithNoTests",
"lint": "tsdx lint src",
"prepare": "tsdx build"
},
"dependencies": {
"core-js-pure": "^3.6.4"
},
"devDependencies": {
"@types/jest": "^24.9.1",
"@types/react": "^16.9.19",
"fast-check": "^1.21.0",
"husky": "^4.2.1",
"react": "^16.12.0",
"react-dom": "^16.12.0",
"tsdx": "^0.12.3",
"tslib": "^1.10.0",
"typescript": "^3.7.5"
},
"husky": {
"hooks": {
"pre-commit": "tsdx lint src"
}
},
"prettier": {
"singleQuote": true,
"trailingComma": "all"
}
}