forked from aoberoi/optk-cli
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
37 lines (37 loc) · 1005 Bytes
/
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
{
"name": "optk-cli",
"version": "0.1.3",
"description": "developer tool for creating opentok sessions and tokens using command line",
"preferGlobal": true,
"bin": {
"optk": "index.js"
},
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"jshint": "jshint *.js cmds/*.js opts/*.js lib/*.js",
"jscs": "jscs *.js cmds/*.js opts/*.js lib/*.js",
"verify": "npm run jshint && npm run jscs"
},
"author": {
"name": "Ankur Oberoi",
"email": "[email protected]"
},
"contributors": [{
"name": "Hashir Baqai",
"email": "[email protected]"
}],
"license": "MIT",
"dependencies": {
"async": "^1.2.0",
"chalk": "^1.0.0",
"dotenv": "^1.1.0",
"lodash": "^3.9.3",
"nomnom": "^1.8.1",
"opentok": "^2.2.5",
"osenv": "^0.1.1"
},
"devDependencies": {
"jscs": "^1.13.1",
"jshint": "^2.8.0"
}
}