-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
39 lines (39 loc) · 1.08 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
{
"name": "react-use-elmish",
"version": "1.0.0",
"description": "React Hook for state and effect management using the Elm Architecture",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"test-only": "jest",
"watch": "jest --watch --coverage",
"test": "jest --coverage --coverageReporters=text-lcov | coveralls",
"prepack": "tsc"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ncthbrt/react-use-elmish.git"
},
"homepage": "https://github.com/ncthbrt/react-use-elmish",
"author": "Nick Cuthbert",
"license": "MIT",
"bugs": {
"url": "https://github.com/ncthbrt/react-use-elmish/issues"
},
"devDependencies": {
"@testing-library/react-hooks": "^1.1.0",
"@types/jest": "^24.0.16",
"@types/react": "^16.8.23",
"@types/react-dom": "^16.8.5",
"coveralls": "^3.0.5",
"jest": "^24.8.0",
"react-test-renderer": "^16.8.6",
"source-map-loader": "^0.2.4",
"ts-jest": "^24.0.2",
"ts-loader": "^6.0.4",
"typescript": "^3.5.3"
},
"peerDependencies": {
"react": "^16.12.0"
}
}