-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathpackage.json
More file actions
31 lines (31 loc) · 824 Bytes
/
package.json
File metadata and controls
31 lines (31 loc) · 824 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
30
31
{
"name": "glassfrog-js",
"version": "0.6.3",
"description": "Node.js wrapper for the GlassFrog API.",
"main": "./lib/glassfrog.js",
"scripts": {
"test": "mocha tests/*.js",
"docs": "rm -rf docs/html/* ; jsdoc -c docs/.conf.json -d docs/html -R README.md -u docs/ lib/*.js"
},
"repository": {
"type": "git",
"url": "https://github.com/UCSoftware/glassfrog-js.git"
},
"author": "Undercurrent",
"license": "ISC",
"bugs": {
"url": "https://github.com/UCSoftware/glassfrog-js/issues"
},
"homepage": "https://github.com/UCSoftware/glassfrog-js",
"dependencies": {
"bluebird": "^2.9.25",
"request": "^2.55.0",
"underscore": "^1.8.3",
"underscore.string": "^3.0.3"
},
"devDependencies": {
"mocha": "^2.2.5",
"nock": "^2.0.1",
"should": "^6.0.3"
}
}