-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
50 lines (50 loc) · 1.37 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
{
"name": "use-state-reducer",
"version": "0.0.3",
"description": "Hook for state reducers",
"main": "dist/cjs/index.js",
"module": "dist/es/index.js",
"sideEffects": false,
"private": false,
"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": "npm run build:cjs && npm run build:es -- --no-clean",
"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-state-reducer.git"
},
"bugs": {
"url": "https://github.com/itsjonq/use-state-reducer/issues"
},
"homepage": "https://github.com/itsjonq/use-state-reducer#readme",
"keywords": [],
"license": "MIT",
"devDependencies": {
"@itsjonq/zero": "4.1.10",
"@testing-library/jest-dom": "5.5.0",
"@testing-library/react": "10.0.4",
"react": "16.13.1",
"react-dom": "16.13.1"
},
"publishConfig": {
"access": "public"
}
}