-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
37 lines (37 loc) · 1019 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": "firebase-client",
"version": "0.1.1",
"description": "A simple Node.js client for Firebase",
"main": "dist/firebase-client.js",
"scripts": {
"test": "grunt test",
"prepublish": "grunt test && grunt build"
},
"keywords": ["firebase", "rest", "api", "client"],
"author": "Jack Stevens <[email protected]>",
"license": "ISC",
"repository": {
"type": "git",
"url": "https://github.com/jpstevens/firebase-client.git"
},
"bugs": {
"url": "https://github.com/jpstevens/firebase-client/issues"
},
"homepage": "https://github.com/jpstevens/firebase-client",
"devDependencies": {
"grunt-coffeelint": "0.0.10",
"grunt-contrib-watch": "^0.6.1",
"grunt": "^0.4.5",
"grunt-contrib-coffee": "^0.10.1",
"grunt-mocha-test": "^0.11.0",
"chai": "^1.9.1",
"load-grunt-tasks": "^0.6.0",
"coffee-script": "^1.7.1",
"sinon": "^1.10.2",
"grunt-contrib-clean": "^0.5.0"
},
"dependencies": {
"q": "^1.0.1",
"request": "^2.36.0"
}
}