-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
35 lines (35 loc) · 842 Bytes
/
package.json
File metadata and controls
35 lines (35 loc) · 842 Bytes
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
{
"name": "leanpub",
"description": "Simple client for Leanpub API",
"author": "Juho Vepsalainen <bebraw@gmail.com>",
"version": "0.1.4",
"scripts": {
"test": "mocha ./test",
"lint": "eslint .",
"watch:test": "mocha ./test --watch",
"preversion": "npm run lint && npm test && git commit --allow-empty -am \"Update lib\""
},
"main": "./index.js",
"dependencies": {
"moment": "^2.11.1",
"request": "^2.67.0"
},
"devDependencies": {
"eslint": "^1.10.3",
"mocha": "^2.2.5",
"nock": "^5.2.1"
},
"repository": {
"type": "git",
"url": "https://github.com/survivejs/leanpub.git"
},
"homepage": "https://github.com/survivejs/leanpub",
"bugs": {
"url": "https://github.com/survivejs/leanpub/issues"
},
"keywords": [
"leanpub",
"client"
],
"license": "MIT"
}