-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
100 lines (100 loc) · 2.14 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
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
{
"name": "garfio",
"version": "0.2.0",
"description": "extending Hookleton Pattern namespaces and more",
"main": "lib/index.js",
"react-native": "lib/index.js",
"source": "src/index.js",
"types": "src/index.d.ts",
"files": [
"lib/",
"src/",
"simple.js",
"store.js",
"container.js",
"LICENSE",
"README.md"
],
"scripts": {
"clean": "rm -rf lib && node misc/clean.js",
"build": "rollup -c",
"test": "jest --coverage --ci",
"coveralls": "cat ./coverage/lcov.info | coveralls",
"prepare": "npm run clean && npm run build && node misc/prepare.js",
"prettier": "pretty-quick"
},
"author": "Félix A.A. <[email protected]>",
"keywords": [
"hook",
"Hookleton",
"React",
"React Native",
"React SSR",
"Singleton",
"globalize",
"global",
"state",
"store",
"garfio",
"shared state",
"Container",
"namespace"
],
"repository": {
"type": "git",
"url": "git+https://github.com/bySabi/garfio.git"
},
"bugs": {
"url": "https://github.com/bySabi/garfio/issues"
},
"dependencies": {
"hookleton": "^0.4.6"
},
"devDependencies": {
"@babel/core": "^7.3.4",
"@babel/preset-env": "^7.3.4",
"@babel/preset-react": "^7.0.0",
"@testing-library/dom": "^6.11.0",
"coveralls": "^3.0.3",
"fs-extra": "^7.0.1",
"husky": "^1.3.1",
"jest": "^24.3.1",
"lint-staged": "^8.1.4",
"prettier": "^1.16.4",
"pretty-quick": "^1.10.0",
"react": "^16.8.2",
"react-dom": "^16.8.2",
"react-hooks-testing-library": "^0.3.6",
"react-testing-library": "^6.0.0",
"rollup": "^1.4.0",
"rollup-plugin-babel": "^4.3.2",
"rollup-plugin-cleanup": "^3.1.1",
"rollup-plugin-terser": "^4.0.4"
},
"peerDependencies": {
"react": "*"
},
"browserslist": [
"last 2 version",
"> 0.25%",
"maintained node versions",
"not dead"
],
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"linters": {
"/**/*.js*": [
"pretty-quick --staged",
"git add"
]
},
"ignore": [
"lib"
]
},
"license": "MIT"
}