forked from maticzav/nookies
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
65 lines (65 loc) · 1.76 KB
/
package.json
File metadata and controls
65 lines (65 loc) · 1.76 KB
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
{
"name": "nookies",
"description": "A set of cookie helpers for Next.js",
"version": "0.0.0-semantic-release",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"repository": "maticzav/nookies",
"author": {
"name": "Matic Zavadlal",
"email": "matic.zavadlal@gmail.com"
},
"scripts": {
"clean": "rimraf dist",
"compile": "tsc -d && yarn run minify",
"minify": "terser -c -m --source-map \"content='./dist/index.js.map',url='index.min.js.map'\" -o dist/index.min.js -- dist/index.js",
"pretest": "npm run clean && npm run compile",
"test": "echo 'test'",
"posttest": "npm run lint",
"lint": "tslint --project tsconfig.json {src}/**/*.ts && prettier-check --ignore-path .gitignore src/**/*.ts",
"prettier": "prettier --write --ignore-path .gitignore src/**/*.ts",
"prepublishOnly": "npm run compile",
"prerelease": "npm run test",
"semantic-release": "semantic-release"
},
"dependencies": {
"cookie": "^0.4.0",
"set-cookie-parser": "^2.4.3"
},
"devDependencies": {
"@types/cookie": "0.4.0",
"@types/express": "4.17.7",
"@types/next": "9.0.0",
"@types/node": "13.13.15",
"@types/set-cookie-parser": "0.0.6",
"husky": "4.2.5",
"prettier": "1.19.1",
"prettier-check": "2.0.0",
"pretty-quick": "2.0.1",
"rimraf": "3.0.2",
"semantic-release": "17.1.1",
"terser": "5.2.0",
"ts-loader": "6.2.2",
"ts-node": "8.10.2",
"tslint": "6.1.3",
"tslint-config-prettier": "1.18.0",
"tslint-config-standard": "9.0.0",
"typescript": "3.9.7"
},
"keywords": [
"cookie",
"cookies",
"next",
"nextjs",
"js",
"auth",
"destory",
"parse",
"create",
"nookies"
],
"release": {
"branch": "master"
},
"license": "MIT"
}