-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
59 lines (59 loc) · 1.36 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
{
"name": "tokensec",
"version": "0.1.1",
"description": "Secure transport of (JWT) access tokens between browser & node.js server",
"main": "./lib/index.js",
"repository": {
"type": "git",
"url": "http://github.com/remie/tokensec.git"
},
"keywords": [
"browser",
"jwt",
"tokens",
"security",
"javascript"
],
"scripts": {
"install": "node ./node_modules/gulp/bin/gulp.js dist"
},
"dependencies": {
"browserify": "^9.0.8",
"crypto-js": "^3.1.4",
"gulp": "^3.8.11",
"gulp-browserify": "^0.5.1",
"gulp-concat": "^2.5.2",
"gulp-sourcemaps": "^1.5.2",
"gulp-uglify": "^1.2.0",
"gulp-util": "^3.0.4",
"lodash": "^3.7.0",
"merge-stream": "^0.1.7",
"node-static": "^0.7.6",
"require-dir": "^0.3.0",
"vinyl-buffer": "^1.0.0",
"vinyl-source-stream": "^1.1.0",
"watchify": "^3.1.1"
},
"devDependencies": {
"csurf": "^1.8.0",
"nconf": "^0.7.1",
"restify": "^3.0.2",
"restify-cookies": "^0.1.1"
},
"author": {
"name": "Remie Bolte",
"email": "[email protected]",
"url": "http://github.com/remie"
},
"license": "LGPLv3",
"bugs": {
"url": "https://github.com/remie/tokensec/issues"
},
"homepage": "https://github.com/remie/tokensec",
"maintainers": [
{
"name": "Remie Bolte",
"email": "[email protected]"
}
]
}