forked from expressjs/csurf
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
51 lines (51 loc) · 1.35 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
{
"name": "csurf",
"description": "CSRF token middleware",
"version": "1.9.0",
"author": "Jonathan Ong <[email protected]> (http://jongleberry.com)",
"contributors": [
"Douglas Christopher Wilson <[email protected]>"
],
"license": "MIT",
"repository": "expressjs/csurf",
"dependencies": {
"cookie": "0.3.1",
"cookie-signature": "1.0.6",
"csrf": "~3.0.6",
"http-errors": "~1.5.1"
},
"devDependencies": {
"body-parser": "1.15.2",
"connect": "3.6.2",
"cookie-parser": "1.4.3",
"cookie-session": "1.2.0",
"eslint": "3.10.2",
"eslint-config-standard": "6.2.1",
"eslint-plugin-markdown": "1.0.0-beta.4",
"eslint-plugin-promise": "3.4.0",
"eslint-plugin-standard": "2.0.1",
"istanbul": "0.4.5",
"mocha": "2.5.3",
"supertest": "1.1.0"
},
"engines": {
"node": ">= 0.8.0"
},
"scripts": {
"lint": "eslint --plugin markdown --ext js,md .",
"test": "mocha --check-leaks --reporter spec --bail test/",
"test-cov": "istanbul cover node_modules/mocha/bin/_mocha -- --check-leaks --reporter dot test/",
"test-travis": "istanbul cover node_modules/mocha/bin/_mocha --report lcovonly -- --check-leaks --reporter spec test/"
},
"files": [
"HISTORY.md",
"LICENSE",
"index.js"
],
"keywords": [
"csrf",
"tokens",
"middleware",
"express"
]
}