forked from tumblr/tumblr.js
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
62 lines (62 loc) · 1.34 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
60
61
62
{
"name": "tumblr.js",
"version": "2.0.0",
"description": "Official JavaScript client for the Tumblr API",
"main": "./lib/tumblr",
"types": "./lib/tumblr.d.ts",
"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": "eslint lib test && nyc mocha",
"lint": "eslint lib test",
"mocha": "mocha"
},
"engines": {
"node": ">=6"
},
"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.17.10",
"query-string": "^6.1.0",
"request": "^2.87.0"
},
"devDependencies": {
"chai": "^4.1.2",
"eslint": "^4.19.1",
"hotdoc": "^0.7.1",
"jsdoc": "^3.4.0",
"json5": "^1.0.1",
"mocha": "^5.2.0",
"nock": "^9.2.6",
"nyc": "^11.8.0",
"semver": "^5.5.0"
},
"files": [
"/lib",
"/LICENSE"
]
}