-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
29 lines (29 loc) · 731 Bytes
/
package.json
File metadata and controls
29 lines (29 loc) · 731 Bytes
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
{
"name": "hmac-csrf",
"version": "0.1.1",
"description": "sessionless csrf with origin check, falling back to cookie based hmac token when origin is not present",
"main": "hmac-csrf.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "git@github.com:nherment/node-hmac-csrf.git"
},
"keywords": [
"csrf",
"hmac",
"sessionless",
"cookie",
"origin"
],
"author": "Nicolas Herment <nherment@gmail.com>",
"license": "Public Domain",
"bugs": {
"url": "https://github.com/nherment/node-hmac-csrf/issues"
},
"homepage": "https://github.com/nherment/node-hmac-csrf",
"dependencies": {
"uuid": "1.4.1"
}
}