-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
51 lines (51 loc) · 1.31 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
{
"name": "tumblr-publish-md",
"bin": {
"tumblr-publish-md": "lib/index.js"
},
"version": "1.0.0-beta.6",
"description": "Publish markdown file to Tumblr",
"main": "lib/index.js",
"scripts": {
"start": "tsc --watch",
"lint": "tslint src/**/*.ts",
"test": "tsc --project test/tsconfig.spec.json && ava test/**/*.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/isoden/tumblr-publish-md.git"
},
"keywords": [
"tumblr", "publish", "markdown"
],
"author": "isoden <[email protected]> (http://isoden.me)",
"license": "MIT",
"bugs": {
"url": "https://github.com/isoden/tumblr-publish-md/issues"
},
"homepage": "https://github.com/isoden/tumblr-publish-md#readme",
"dependencies": {
"@types/chalk": "^0.4.31",
"@types/inquirer": "0.0.34",
"@types/lodash": "^4.14.64",
"@types/meow": "^3.6.2",
"chalk": "^1.1.3",
"clui": "^0.3.1",
"date-fns": "^1.28.5",
"eventemitter2": "^4.1.0",
"inquirer": "^3.0.6",
"jekyll-markdown-parser": "^1.0.0",
"lodash": "^4.17.4",
"meow": "^3.7.0",
"preferences": "^0.2.1",
"rxjs": "^5.4.0",
"toml": "^2.3.2",
"tslib": "^1.7.1",
"tumblr.js": "^1.1.1",
"typescript": "^2.3.3"
},
"devDependencies": {
"ava": "^0.19.1",
"tslint": "^5.3.2"
}
}