-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
71 lines (71 loc) · 1.87 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
{
"name": "use-enhanced-state",
"version": "0.0.13",
"description": "A collection of enhanced useState hooks for React.",
"main": "dist/cjs/index.js",
"module": "dist/es/index.js",
"sideEffects": false,
"private": false,
"types": "dist/types",
"scripts": {
"prestart": "zero prestart",
"build:es": "BUILD_FORMAT=es zero build -d dist/es",
"build:cjs": "BUILD_FORMAT=cjs zero build -d dist/cjs",
"build:ts": "zero build --typescript --no-clean",
"build:js": "npm run build:cjs && npm run build:es -- --no-clean",
"build": "npm run build:js && npm run build:ts",
"lint": "zero lint",
"dev": "zero test",
"test": "zero test --coverage",
"test:coverage": "zero test --coverage",
"format": "zero format",
"validate": "zero validate",
"release": "zero release",
"version": "npm run build",
"precommit": "zero pre-commit"
},
"files": [
"dist",
"README.md",
"LICENSE"
],
"author": "Jon Quach <hello@jonquach.com> (https://jonquach.com)",
"repository": {
"type": "git",
"url": "git+https://github.com/itsjonq/use-enhanced-state.git"
},
"bugs": {
"url": "https://github.com/itsjonq/use-enhanced-state/issues"
},
"homepage": "https://github.com/itsjonq/use-enhanced-state#readme",
"keywords": [
"react",
"hooks",
"useState",
"enhanced",
"useListState",
"useLocalState",
"useControlledState",
"useLocalStorage"
],
"license": "MIT",
"dependencies": {
"@itsjonq/is": "0.0.2",
"tiny-warning": "^1.0.3"
},
"devDependencies": {
"@itsjonq/zero": "5.0.2",
"@testing-library/react": "10.4.8",
"@types/jest": "24.0.12",
"@types/react": "16.8.15",
"babel-plugin-dev-expression": "^0.2.2",
"react": "^16.13.1",
"react-dom": "^16.13.1"
},
"peerDependencies": {
"react": "^16.8.0"
},
"publishConfig": {
"access": "public"
}
}