-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
68 lines (68 loc) · 1.65 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
{
"name": "react-localux",
"version": "3.1.0",
"description": "React Context API based store",
"files": [
"src/create-use-store.js",
"src/create-use-store.tsx",
"src/devtools.js",
"src/devtools.ts",
"src/types.js",
"src/types.ts",
"src/utils.js",
"src/utils.ts",
"index.js",
"index.ts",
"README.md"
],
"main": "index.js",
"scripts": {
"test": "jest --coverage && tsc --noEmit",
"build": "tsc",
"build:example": "parcel build example/example.tsx -d example/dist",
"dev": "parcel example/index.dev.html",
"prepublishOnly": "echo \"BUILD\"; npm run build"
},
"husky": {
"hooks": {
"pre-push": "npm test"
}
},
"repository": {
"type": "git",
"url": "git+https://github.com/DimitryDushkin/react-localux.git"
},
"keywords": [
"react",
"store"
],
"author": "Dimitry Dushkin",
"license": "MIT",
"bugs": {
"url": "https://github.com/DimitryDushkin/react-localux/issues"
},
"homepage": "https://github.com/DimitryDushkin/react-localux#readme",
"devDependencies": {
"@babel/preset-env": "^7.7.1",
"@babel/preset-react": "^7.7.0",
"@babel/preset-typescript": "^7.7.2",
"@types/jest": "^24.0.23",
"@types/react": "^16.9.11",
"@types/react-dom": "^16.9.4",
"@types/react-test-renderer": "^16.9.1",
"babel-jest": "^24.9.0",
"husky": "^3.0.9",
"jest": "^24.9.0",
"parcel-bundler": "^1.12.4",
"react": "^16.12.0",
"react-dom": "^16.12.0",
"react-test-renderer": "^16.12.0",
"typescript": "^3.7.2"
},
"peerDependencies": {
"react": "^16.12.0"
},
"browserslist": [
"last 2 Chrome versions"
]
}