-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
53 lines (53 loc) · 1.21 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
{
"name": "node-getpocket",
"version": "1.0.0",
"description": "Node.js module for authenticating and accessing the GetPocket API",
"homepage": "https://github.com/vicchi/node-getpocket",
"keywords": [
"node",
"getpocket",
"api"
],
"bugs": {
"url": "https://github.com/vicchi/node-getpocket/issues"
},
"main": "getpocket.js",
"engines": {
"node": ">= 0.10.33"
},
"scripts": {
"test": "./node_modules/mocha/bin/mocha"
},
"author": {
"name": "Gary Gale",
"email": "[email protected]",
"url": "http://www.garygale.com/"
},
"contributors": [
{
"name": "Gary Gale",
"email": "[email protected]",
"url": "http://www.garygale.com/"
},
{
"name": "Gonçalo Morais",
"email": "[email protected]",
"url": "http://blog.gnclmorais.com"
}
],
"repository": {
"type": "git",
"url": "https://github.com/vicchi/node-getpocket"
},
"license": "BSD-2-Clause",
"dependencies": {
"bluebird": "^3.5.0",
"request": "^2.49.0"
},
"devDependencies": {
"express": "^4.10.4",
"mocha": "^3.4.2",
"stdio": "^0.2.7",
"yakbak": "github:newcontext/yakbak#feature/add-option-to-exclude-headers-in-tapename"
}
}