forked from stormpath/stormpath-sdk-node
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
76 lines (76 loc) · 1.85 KB
/
package.json
File metadata and controls
76 lines (76 loc) · 1.85 KB
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
{
"name": "stormpath",
"version": "0.8.1",
"main": "lib/stormpath.js",
"description": "Official Stormpath SDK for Node.js",
"keywords": [
"stormpath",
"api",
"wrapper",
"sdk",
"client",
"user",
"user management",
"user login",
"identity",
"identity management",
"account",
"account login",
"login",
"authentication",
"authorization",
"access control",
"password",
"password hash"
],
"license": "Apache-2.0",
"homepage": "https://github.com/stormpath/stormpath-sdk-node",
"bugs": "https://github.com/stormpath/stormpath-sdk-node/issues",
"author": {
"name": "Stormpath, Inc.",
"email": "support@stormpath.com",
"url": "http://www.stormpath.com"
},
"repository": {
"type": "git",
"url": "git://github.com/stormpath/stormpath-sdk-node.git"
},
"scripts": {
"test": "grunt",
"coverage": "node ./node_modules/istanbul/lib/cli cover ./node_modules/mocha/bin/_mocha"
},
"dependencies": {
"underscore": "~1.5.2",
"underscore.string": "~2.3.3",
"properties-parser": "~0.2.3",
"request": "~2.40.0",
"moment": "~2.8.3",
"node-uuid": "~1.4.1",
"async": "~0.7.0",
"redis": "~0.12.1",
"memcached": "~0.2.8",
"glob": "3",
"jwt-simple": "~0.2.0"
},
"devDependencies": {
"grunt": "~0.4.2",
"grunt-cli": "~0.1.11",
"grunt-contrib-jshint": "~0.7.0",
"grunt-contrib-nodeunit": "~0.2.0",
"grunt-contrib-watch": "~0.5.0",
"grunt-mocha-istanbul": "~1.2.0",
"grunt-mocha-test": "~0.10.0",
"load-grunt-tasks": "~0.2.0",
"time-grunt": "~0.2.0",
"jshint-stylish": "~0.1.3",
"chai": "~1.8.1",
"mocha": "~1.17.0",
"sinon": "~1.7.3",
"mocha-sinon": "~1.1.0",
"sinon-chai": "~2.4.0",
"istanbul": "~0.2.4",
"lodash": "~2.4.1",
"nock": "~0.27.2",
"tmp": "0.0.24"
}
}