-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
62 lines (62 loc) · 1.36 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
{
"name": "phetaca",
"version": "0.1.0-alpha",
"description": "The Complete JavaScript data-fetching solution",
"main": "dist/index.js",
"module": "dist/index.js",
"types": "dist/index.d.ts",
"sideEffects": false,
"files": [
"dist"
],
"author": "Eugeny Schibrikov <[email protected]>",
"license": "MIT",
"private": false,
"scripts": {
"test": "jest",
"build": "tsc",
"size": "size-limit",
"prepublishOnly": "npm run test && npm run build && npm run size"
},
"size-limit": [
{
"name": "@phetaca/react",
"path": "dist/react/*.js",
"limit": "300B",
"ignore": [
"react",
"ky"
]
},
{
"name": "@phetaca/core",
"path": "dist/*.js",
"limit": "2KB",
"ignore": [
"react",
"ky"
]
}
],
"dependencies": {},
"devDependencies": {
"@arkweid/lefthook": "^0.7.0",
"@size-limit/preset-small-lib": "^4.3.1",
"@testing-library/react-hooks": "^3.2.1",
"@types/jest": "^24.0.25",
"@types/node": "^13.9.1",
"jest": "^25.1.0",
"jest-fetch-mock": "^3.0.3",
"prettier": "^1.19.1",
"react": "^16.13.0",
"react-test-renderer": "^16.13.0",
"runtypes": "^4.2.0",
"size-limit": "^4.3.1",
"ts-jest": "^25.2.1",
"typescript": "^3.7.4"
},
"peerDependencies": {
"react": "16.x",
"runtypes": "4.x"
}
}