forked from meritt/node-tumblr
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
32 lines (32 loc) · 839 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
{
"name": "tumblr"
, "version": "0.4.1"
, "description": "A wrapper for the Tumblr API"
, "keywords": ["tumblr", "blog", "api", "wrapper"]
, "author": "Alexey Simonenko <[email protected]>"
, "contributors": [
"Alexey Simonenko <[email protected]>"
, "Greg Wang <[email protected]>"
]
, "homepage": "http://simonenko.su/projects/node-tumblr"
, "main": "./lib/index"
, "repository": {
"type": "git"
, "url": "https://github.com/meritt/node-tumblr.git"
}
, "engines": {
"node": ">=0.10"
}
, "dependencies": {
"request": "2.x"
}
, "devDependencies": {
"coffee-script": "~1.7.1"
, "nodeunit": "0.8.x"
}
, "scripts": {
"test": "nodeunit test"
, "build": "./node_modules/.bin/coffee -c -o lib/ src/"
}
, "license": "MIT"
}