-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
37 lines (37 loc) · 856 Bytes
/
package.json
File metadata and controls
37 lines (37 loc) · 856 Bytes
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
{
"name": "react-hook-context",
"public": true,
"description": "Store creator using hooks and context api",
"version": "0.0.1",
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/Vieriksson/hook-store"
},
"author": "Vieriksson <me@viktoreriksson.se>",
"bugs": {
"url": "https://github.com/Vieriksson/hook-store/issues",
"email": "me@viktoreriksson.se"
},
"scripts": {
"build": "npx tsc"
},
"devDependencies": {
"@types/react": "^16.7.2",
"typescript": "^3.1.6"
},
"peerDependencies": {
"react": ">=16.7.0-alpha.0"
},
"prettier": {
"printWidth": 80,
"singleQuote": true,
"semi": false,
"useTabs": false,
"tabWidth": 2,
"bracketSpacing": true,
"jsxBracketSameLine": false
}
}