-
Notifications
You must be signed in to change notification settings - Fork 9
/
package.json
83 lines (83 loc) · 2.33 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
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
{
"name": "next-authentication",
"version": "0.3.5",
"description": "Authentication & Authorization Library for the Next.js Framework",
"main": "dist/next-authentication.js",
"module": "dist/next-authentication.esm.js",
"source": "src/index.ts",
"scripts": {
"build": "rollup -c",
"dev": "rollup -w",
"release": "cross-var npm run build && cross-var git commit -am $npm_package_version && cross-var git tag $npm_package_version && git push && git push --tags && npm publish",
"test": "jest",
"lint": "eslint src --ext .ts"
},
"repository": {
"type": "git",
"url": "https://github.com/j0lv3r4/next-authentication.git"
},
"keywords": [
"authentication",
"authorization",
"cookie",
"cookies",
"cookie-auth",
"next-auth",
"auth",
"next.js"
],
"author": "Juan Olvera <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/j0lv3r4/next-authentication/issues"
},
"homepage": "https://github.com/j0lv3r4/next-authentication",
"devDependencies": {
"@babel/core": "^7.9.6",
"@babel/helper-call-delegate": "^7.8.7",
"@babel/plugin-transform-modules-commonjs": "^7.9.6",
"@babel/preset-env": "^7.9.6",
"@babel/preset-react": "^7.9.4",
"@babel/preset-typescript": "^7.9.0",
"@now/node": "^1.6.1",
"@rollup/plugin-commonjs": "^11.1.0",
"@rollup/plugin-node-resolve": "^7.1.3",
"@rollup/plugin-typescript": "^4.1.1",
"@types/cookie": "^0.4.0",
"@types/jest": "^25.2.3",
"@types/node": "^13.13.6",
"@types/supertest": "^2.0.9",
"@typescript-eslint/eslint-plugin": "^2.34.0",
"@typescript-eslint/parser": "^2.34.0",
"babel-jest": "^25.5.1",
"cross-var": "^1.1.0",
"crypto": "^1.0.1",
"eslint": "^6.8.0",
"eslint-config-airbnb-base": "^14.1.0",
"eslint-plugin-import": "^2.20.2",
"husky": "^4.2.5",
"jest": "^26.0.0",
"next": "^9.4.2",
"np": "^6.2.3",
"prettier": "^2.0.5",
"querystring": "^0.2.0",
"rollup": "^2.10.2",
"rollup-plugin-analyzer": "^3.2.3",
"supertest": "^4.0.2",
"ts-jest": "^26.0.0",
"tslib": "^2.0.0",
"typescript": "^3.9.2"
},
"dependencies": {
"cookie": "^0.4.1",
"simple-encryptor": "^3.0.0"
},
"np": {
"yarn": false
},
"husky": {
"hooks": {
"pre-commit": "npm run lint && npm test"
}
}
}