forked from rakutentech/docpub
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
64 lines (64 loc) · 1.4 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
54
55
56
57
58
59
60
61
62
63
64
{
"name": "docpub",
"version": "0.3.0",
"description": "A script for publishing .md articles, stored in git repo, on ZenDesk",
"repository": {
"type": "git",
"url": "https://github.com/rakutentech/docpub"
},
"main": "index.js",
"engines": {
"node": ">= 6.0.0"
},
"bin": {
"docpub": "./bin/docpub.js"
},
"keywords": [
"zendesk",
"pipeline",
"git",
"publish",
"documentation",
"docs",
"markdown"
],
"authors": [
],
"license": "MIT",
"scripts": {
"lint": "eslint .",
"test": "istanbul test _mocha -- --recursive test/",
"precommit": "npm run lint",
"preversion": "npm run lint && npm test"
},
"dependencies": {
"bluebird": "3.5.0",
"chalk": "1.1.3",
"commander": "2.9.0",
"fs-promise": "2.0.1",
"gemini-configparser": "0.3.0",
"highlight.js": "9.10.0",
"lodash": "4.17.4",
"markdown-it": "8.3.1",
"markdown-it-github-toc": "3.1.0",
"node-zendesk": "1.1.12",
"promise-queue": "2.2.3"
},
"devDependencies": {
"chai": "3.5.0",
"chai-as-promised": "6.0.0",
"clear-require": "2.0.0",
"coveralls": "2.13.0",
"dotenv": "4.0.0",
"eslint": "3.17.1",
"husky": "0.13.2",
"istanbul": "0.4.5",
"mocha": "3.3.0",
"mock-fs": "4.3.0",
"proxyquire": "1.8.0",
"sinon": "2.1.0",
"sinon-chai": "2.9.0"
}
}