-
Notifications
You must be signed in to change notification settings - Fork 24
/
package.json
49 lines (49 loc) · 1.18 KB
/
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
38
39
40
41
42
43
44
45
46
47
48
49
{
"name": "picasa",
"version": "1.0.8",
"engines": {
"node": ">=4.8.7"
},
"description": "Picasa web albums client for node",
"main": "src/picasa.js",
"scripts": {
"test": "mocha src/ --harmony",
"test-debug": "mocha src/ --harmony -t 6000 --debug-brk",
"test-watch": "mocha src/ --harmony --watch",
"docs": "jsdoc --configure .jsdoc.json src/picasa.js -t docs/template"
},
"repository": {
"type": "git",
"url": "git+https://github.com/esteban-uo/picasa.git"
},
"keywords": [
"picasa",
"web",
"album",
"data",
"api",
"client",
"node"
],
"author": "Esteban Uscanga Olea <[email protected]> (https://github.com/esteban-uo)",
"contributors": [
"Julien Lengrand-Lambert <[email protected]> (http://lengrand.fr)"
],
"license": "MIT",
"bugs": {
"url": "https://github.com/esteban-uo/picasa/issues"
},
"homepage": "https://github.com/esteban-uo/picasa#readme",
"devDependencies": {
"chai": "^3.4.1",
"jsdoc": "^3.5.5",
"minami": "^1.2.3",
"mocha": "^2.3.3",
"rewire": "^2.5.0",
"sinon": "^1.17.2",
"sinon-chai": "^2.8.0"
},
"dependencies": {
"request": "^2.65.0"
}
}