-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
68 lines (68 loc) · 1.75 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": "use-cookie-state",
"version": "0.0.0-development",
"description": "State management React hook using browser cookies as persistent storage",
"author": "dqunbp",
"license": "MIT",
"repository": "dqunbp/use-cookie-state",
"main": "dist/index.js",
"module": "dist/index.esm.js",
"scripts": {
"build": "rollup -c",
"start": "rollup -c -w",
"test": "jest --watchAll --no-cache",
"ci:test": "CI=true jest --no-cache",
"prepare": "npm run build",
"deploy": "gh-pages -d example/build",
"semantic-release": "semantic-release",
"cz": "cz"
},
"jest": {
"preset": "ts-jest",
"testEnvironment": "jsdom"
},
"files": [
"dist/**/*"
],
"keywords": [
"hook",
"state",
"react",
"cookie",
"react hook",
"react hooks",
"use-cookie-state"
],
"peerDependencies": {
"cookie": "^0.4.x || ^0.5.x || ^0.6.x",
"react": "^16.8.x || ^17.x.x || ^18.x.x"
},
"devDependencies": {
"@semantic-release/changelog": "^6.0.1",
"@semantic-release/git": "^10.0.1",
"@testing-library/react-hooks": "7.0.2",
"@types/cookie": "^0.5.1",
"@types/jest": "^27.0.3",
"@types/react": "^18.0.9",
"cookie": "^0.5.0",
"cz-conventional-changelog": "^3.3.0",
"gh-pages": "^4.0.0",
"jest": "^27.4.4",
"prettier": "^2.6.2",
"react": "^18.1.0",
"react-test-renderer": "^18.1.0",
"rollup": "^2.73.0",
"rollup-plugin-peer-deps-external": "^2.2.4",
"rollup-plugin-terser": "^7.0.2",
"rollup-plugin-typescript2": "^0.31.2",
"semantic-release": "^19.0.2",
"standard-version": "^9.5.0",
"ts-jest": "^27.1.1",
"typescript": "^4.6.4"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
}
}