forked from tumblr/tumblr.js
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
59 lines (59 loc) · 1.25 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
50
51
52
53
54
55
56
57
58
59
{
"name": "tumblr.js",
"version": "1.1.0",
"description": "Official JavaScript client for the Tumblr API",
"main": "./lib/tumblr",
"scripts": {
"generate-docs": "rm -rf gh-pages && node_modules/.bin/jsdoc -c jsdoc.json",
"gh-pages": "git subtree push --prefix=gh-pages origin gh-pages",
"test": "gulp"
},
"engines": {
"node": ">=0.12.0"
},
"homepage": "https://github.com/tumblr/tumblr.js",
"repository": {
"type": "git",
"url": "https://github.com/tumblr/tumblr.js.git"
},
"keywords": [
"tumblr",
"api"
],
"author": "Tumblr",
"license": "Apache-2.0",
"contributors": [
{
"name": "Keith McKnight",
"email": "[email protected]"
},
{
"name": "Bryan Irace",
"email": "[email protected]"
},
{
"name": "John Crepezzi",
"email": "[email protected]"
}
],
"dependencies": {
"lodash": "^4.13.1",
"query-string": "^4.2.2",
"request": "^2.73.0"
},
"devDependencies": {
"chai": "^3.5.0",
"gulp": "^3.9.1",
"gulp-eslint": "^3.0.1",
"gulp-istanbul": "^1.0.0",
"gulp-mocha": "^2.2.0",
"hotdoc": "^0.7.0",
"jsdoc": "^3.4.0",
"json5": "^0.5.0",
"nock": "^8.0.0"
},
"files": [
"/lib",
"/LICENSE"
]
}