-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
39 lines (39 loc) · 1.06 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
{
"name": "traktapi2",
"version": "1.4.0",
"description": "A Trakt.tv API wrapper for their new APIv2",
"main": "trakt.js",
"scripts": {
"test": "mocha",
"checkmethods": "node tools/generateMethods.js && node tools/compareMethodsChanges.js",
"updatemethods": "node tools/generateMethods.js && mv methods_new.json methods.json && node tools/generateMethodsDoc.js",
"buildapidoc": "./node_modules/documentation/bin/documentation.js build trakt.js -f md -o API.md"
},
"repository": {
"type": "git",
"url": "https://github.com/PatrickE94/traktapi2"
},
"keywords": [
"Trakt.tv",
"Trakt",
"Tv",
"API",
"wrapper"
],
"author": "Patrick Engström",
"license": "MIT",
"bugs": {
"url": "https://github.com/PatrickE94/traktapi2/issues"
},
"homepage": "https://github.com/PatrickE94/traktapi2",
"devDependencies": {
"chai": "^1.10.0",
"documentation": "^4.0.0-beta2",
"mocha": "^2.1.0",
"protagonist": "^1.3.0-pre.1"
},
"dependencies": {
"got": "^5.1.0",
"pinkie-promise": "^2.0.0"
}
}