-
Notifications
You must be signed in to change notification settings - Fork 31
/
Copy pathpackage.json
80 lines (80 loc) · 1.77 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
{
"name": "koa-csrf",
"description": "CSRF tokens for Koa",
"version": "5.0.1",
"author": {
"name": "Jonathan Ong",
"email": "[email protected]",
"url": "http://jongleberry.com",
"twitter": "https://twitter.com/jongleberry"
},
"bugs": "koajs/csrf/issues",
"contributors": [
{
"name": "Nick Baugh",
"email": "[email protected]",
"url": "https://github.com/niftylettuce"
},
{
"name": "Imed Jaberi",
"email": "[email protected]",
"url": "https://www.3imed-jaberi.com/"
}
],
"dependencies": {
"csrf": "^3.1.0",
"is-string-and-not-blank": "^0.0.2",
"multimatch": "5"
},
"devDependencies": {
"@commitlint/cli": "^17.0.3",
"@commitlint/config-conventional": "^17.0.3",
"ava": "^4.3.0",
"cross-env": "^7.0.3",
"eslint": "^8.19.0",
"eslint-config-xo-lass": "^2.0.1",
"fixpack": "^4.0.0",
"husky": "^8.0.1",
"koa": "^2.13.4",
"koa-bodyparser": "^4.3.0",
"koa-convert": "^2.0.0",
"koa-generic-session": "^2.3.0",
"lint-staged": "^13.0.3",
"nyc": "^15.1.0",
"remark-cli": "^11.0.0",
"remark-preset-github": "^4.0.4",
"supertest": "^6.2.4",
"xo": "^0.50.0"
},
"engines": {
"node": ">= 14"
},
"files": [
"index.js"
],
"homepage": "https://github.com/koajs/csrf",
"keywords": [
"cross",
"csrf",
"forgery",
"koa",
"koa2",
"koa@2",
"koa@next",
"koanext",
"middleware",
"next",
"request",
"security",
"site"
],
"license": "MIT",
"main": "index.js",
"repository": "koajs/csrf",
"scripts": {
"lint": "xo --fix && remark . -qfo && fixpack",
"prepare": "husky install",
"pretest": "npm run lint",
"test": "cross-env NODE_ENV=test nyc ava"
}
}