-
Notifications
You must be signed in to change notification settings - Fork 17
/
Copy pathpackage.json
46 lines (46 loc) · 1.04 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
{
"name": "next-cookies",
"version": "2.0.3",
"description": "get the cookies on both the client & server",
"main": "index.js",
"types": "index.d.ts",
"repository": "matthewmueller/next-cookies",
"scripts": {
"test-server": "cd tests/test-app && npm run test-server",
"lint": "eslint .",
"autofix": "eslint . --fix",
"test-integration": "node tests/run_integration_tests.js",
"test": "npm run lint && npm run test-integration"
},
"husky": {
"hooks": {
"pre-commit": "pretty-quick --staged"
}
},
"files": [
"index.js",
"index.d.ts"
],
"keywords": [
"cookies",
"next.js",
"cookie",
"parser",
"json"
],
"author": "Matthew Mueller",
"license": "MIT",
"dependencies": {
"universal-cookie": "^4.0.3"
},
"devDependencies": {
"chromedriver": "^*",
"eslint": "^6.8.0",
"eslint-config-prettier": "^6.10.0",
"eslint-plugin-prettier": "^3.1.2",
"nightwatch": "^1.3.4",
"prettier": "1.18.2",
"react": "16.11.0",
"react-dom": "16.11.0"
}
}