forked from expressjs/csurf
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
53 lines (53 loc) · 1.29 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
{
"name": "csurf",
"description": "CSRF token middleware",
"version": "1.11.0",
"author": "Jonathan Ong <[email protected]> (http://jongleberry.com)",
"contributors": [
"Douglas Christopher Wilson <[email protected]>"
],
"license": "MIT",
"repository": "expressjs/csurf",
"dependencies": {
"cookie": "0.4.1",
"cookie-signature": "1.0.6",
"csrf": "3.1.0",
"http-errors": "1.8.0"
},
"devDependencies": {
"body-parser": "1.19.0",
"connect": "3.7.0",
"cookie-parser": "1.4.6",
"cookie-session": "1.4.0",
"eslint": "7.32.0",
"eslint-config-standard": "14.1.1",
"eslint-plugin-import": "2.25.3",
"eslint-plugin-markdown": "2.2.1",
"eslint-plugin-node": "11.1.0",
"eslint-plugin-promise": "4.3.1",
"eslint-plugin-standard": "4.1.0",
"mocha": "8.2.1",
"nyc": "15.1.0",
"supertest": "4.0.2"
},
"engines": {
"node": ">= 0.8.0"
},
"scripts": {
"lint": "eslint .",
"test": "mocha --check-leaks --reporter spec --bail test/",
"test-ci": "nyc --reporter=lcovonly --reporter=text npm test",
"test-cov": "nyc --reporter=html --reporter=text npm test"
},
"files": [
"HISTORY.md",
"LICENSE",
"index.js"
],
"keywords": [
"csrf",
"tokens",
"middleware",
"express"
]
}