-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
45 lines (45 loc) · 1.11 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
{
"name": "pocket-promise",
"description": "A promise-based client for getpocket.com API.",
"version": "1.1.0",
"author": "Peter deHaan <peter@deseloper.com> (http://nodeexamples.com/)",
"bugs": {
"url": "https://github.com/pdehaan/pocket-promise/issues"
},
"dependencies": {
"joi": "6.4.1",
"lodash": "3.7.0",
"promise": "7.0.1",
"request-promise": "0.4.2",
"require-directory": "2.1.0"
},
"devDependencies": {
"rimraf": "2.3.2",
"standard": "3.7.2"
},
"homepage": "https://github.com/pdehaan/pocket-promise",
"keywords": [
"pocket",
"getpocket"
],
"license": "WTFPL",
"main": "dist/index.js",
"repository": {
"type": "git",
"url": "https://github.com/pdehaan/pocket-promise.git"
},
"scripts": {
"build": "npm run clean; npm run compile",
"clean": "rimraf dist .DS_Store npm-debug.log",
"compile": "babel src --out-dir dist",
"outdated": "npm outdated --depth 0",
"prebuild": "npm test",
"prepublish": "npm run build",
"test": "standard && npm run outdated"
},
"standard": {
"ignore": [
"dist/**"
]
}
}