-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
63 lines (63 loc) · 1.46 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
{
"name": "@cinimod/use-async",
"version": "1.2.0",
"description": "React hook for assynchronous calls, triggering Suspense api",
"keywords": [
"react",
"hook",
"suspense",
"async"
],
"author": "Marcony Neves <[email protected]>",
"homepage": "https://github.com/mkny/cinimod#readme",
"license": "MIT",
"main": "dist/index.js",
"files": [
"dist/*"
],
"scripts": {
"build": "rimraf dist && tsc",
"build:watch": "tsc -w",
"test": "jest",
"test:watch": "yarn test --watch",
"prepare": "npm run build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/mkny/cinimod.git"
},
"bugs": {
"url": "https://github.com/mkny/cinimod/issues"
},
"dependencies": {
"@cinimod/tsconfig": "^1.0.1"
},
"peerDependencies": {
"react": "*"
},
"devDependencies": {
"@babel/core": "^7.14.6",
"@babel/preset-env": "^7.14.7",
"@babel/preset-react": "^7.14.5",
"@babel/preset-typescript": "^7.14.5",
"@testing-library/jest-dom": "^5.14.1",
"@testing-library/react": "^12.0.0",
"@testing-library/react-hooks": "^7.0.1",
"@types/jest": "^26.0.24",
"jest": "^25.0"
},
"jest": {
"setupFilesAfterEnv": [
"<rootDir>/jest-setup.ts"
],
"coverageThreshold": {
"global": {
"branches": 80,
"functions": 80,
"lines": 80,
"statements": 80
}
}
},
"gitHead": "1acf4f05b6a2a457377cd6b8c0eeff40d6c7d5f5"
}