-
Notifications
You must be signed in to change notification settings - Fork 9
/
package.json
45 lines (45 loc) · 907 Bytes
/
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
{
"name": "react-cookies",
"version": "0.1.2-beta.0",
"description": "Load and save cookies with React",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"repository": "bukinoshita/react-cookies",
"author": "Bu Kinoshita <[email protected]>",
"license": "MIT",
"keywords": [
"react-cookies",
"react-cookie",
"cookie",
"cookies",
"react"
],
"engines": {
"node": ">=10"
},
"files": [
"dist"
],
"scripts": {
"build": "tsc",
"prepublish": "yarn build",
"test": "jest --config=jest.config.json"
},
"dependencies": {
"cookie": "0.4.1"
},
"devDependencies": {
"@sindresorhus/tsconfig": "0.7.0",
"@types/cookie": "0.4.0",
"@types/jest": "26.0.20",
"@types/node": "14.14.25",
"jest": "26.6.3",
"ts-jest": "26.5.1",
"typescript": "4.1.5"
},
"xo": {
"extends": [
"prettier"
]
}
}