-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
77 lines (77 loc) · 1.96 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
{
"name": "react-state-patterns",
"version": "1.0.0",
"description": "Tiny utility package for easily creating reusable implementations of React state provider patterns.",
"main": "dist/main.js",
"types": "dist/types/index.d.ts",
"scripts": {
"test": "jest",
"build": "webpack --mode production && yarn build:typedefs",
"build:typedefs": "tsc --declaration --emitDeclarationOnly --rootDir src --outDir dist/types",
"dev": "webpack --mode development",
"docs": "rimraf ./docs && ./node_modules/.bin/esdoc",
"prepublishOnly": "yarn build"
},
"files": [
"dist/main.js"
],
"lint-staged": {
"*.{js,jsx}": [
"prettier --write",
"git add"
]
},
"jest": {
"setupFiles": [
"<rootDir>/src/test-setup.js"
]
},
"repository": {
"type": "git",
"url": "git+https://github.com/mcclayton/react-state-patterns.git"
},
"keywords": [
"react",
"state",
"utility",
"hooks",
"decorator",
"patterns",
"render props",
"context"
],
"peerDependencies": {
"react": ">= 16.8.0",
"react-dom": ">= 16.8.0"
},
"author": "Michael Clayton",
"license": "MIT",
"bugs": {
"url": "https://github.com/mcclayton/react-state-patterns/issues"
},
"homepage": "https://github.com/mcclayton/react-state-patterns#readme",
"devDependencies": {
"@babel/core": "7.6.4",
"@babel/preset-env": "7.6.3",
"@babel/preset-react": "7.6.3",
"@babel/preset-typescript": "7.6.0",
"@types/react": "16.9.9",
"@types/react-dom": "16.9.2",
"babel-loader": "8.0.6",
"enzyme": "3.10.0",
"enzyme-adapter-react-16": "1.15.1",
"eslint": "6.5.1",
"eslint-config-prettier": "6.4.0",
"husky": "3.0.9",
"jest": "24.9.0",
"lint-staged": "9.4.2",
"prettier": "1.18.2",
"react": "16.10.2",
"react-dom": "16.10.2",
"ts-jest": "24.1.0",
"ts-loader": "6.2.0",
"typescript": "3.6.4",
"webpack": "4.41.2",
"webpack-cli": "3.3.9"
}
}