-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathpackage.json
More file actions
55 lines (55 loc) · 1.21 KB
/
package.json
File metadata and controls
55 lines (55 loc) · 1.21 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
{
"name": "playlyfe",
"version": "0.4.4",
"description": "Playlyfe SDK for NodeJS",
"keywords": [
"playlyfe",
"auth",
"authentication",
"identity",
"oauth",
"api",
"sdk"
],
"homepage": "http://dev.playlyfe.com",
"repository": {
"type": "git",
"url": "git://github.com/playlyfe/playlyfe-node-sdk.git"
},
"bugs": {
"url": "http://github.com/playlyfe/playlyfe-node-sdk/issues"
},
"author": {
"name": "Johny Jose",
"email": "johny@playlyfe.com",
"url": "http://blog.playlyfe.com"
},
"contributors": [
{
"name": "Kumar Harsh",
"email": "khs@playlyfe.com",
"url": "http://github.com/kumarharsh"
}
],
"licenses": [
{
"type": "MIT",
"url": "http://www.opensource.org/licenses/MIT"
}
],
"main": "./lib/playlyfe",
"scripts": {
"prepublish": "./node_modules/.bin/coffee -o lib -cb src/playlyfe.coffee",
"test": "mocha -R spec --timeout 20000 --compilers coffee:coffee-script/register"
},
"dependencies": {
"request-promise": "0.4.2",
"lodash": "2.4.1",
"bluebird": "2.9.25",
"jsonwebtoken": "5.0.0"
},
"devDependencies": {
"coffee-script": "1.9.2",
"mocha": "1.17.1"
}
}