forked from rbren/mediumexporter
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
42 lines (42 loc) · 933 Bytes
/
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
{
"name": "mediumexporter",
"version": "0.1.6",
"description": "Export posts from medium.com to markdown",
"main": "entry.js",
"directories": {
"test": "test"
},
"dependencies": {
"bluebird": "^3.5.0",
"commander": "^2.8.1",
"moment": "^2.22.2",
"request": "^2.60.0",
"rss-parser": "^2.10.6"
},
"devDependencies": {
"chai": "^3.2.0",
"mocha": "^2.2.5"
},
"scripts": {
"test": "./node_modules/.bin/mocha test",
"build": "./build.sh"
},
"repository": {
"type": "git",
"url": "git+https://github.com/xdamman/mediumexporter.git"
},
"keywords": [
"medium",
"markdown"
],
"author": "Xavier Damman (@xdamman)",
"license": "MIT",
"preferGlobal": true,
"bin": {
"mediumexporter": "index.js"
},
"bugs": {
"url": "https://github.com/xdamman/mediumexporter/issues"
},
"homepage": "https://github.com/xdamman/mediumexporter#readme"
}