-
Notifications
You must be signed in to change notification settings - Fork 16
/
Copy pathpackage.json
36 lines (36 loc) · 872 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
{
"name": "pandoc-as-a-service",
"version": "1.0.0",
"description": "If you need to convert text from one markup format into another, pandoc-as-a-service is your swiss-army knife. ",
"main": "index.js",
"repository": {
"type": "git",
"url": "git+https://github.com/mrded/pandoc-as-a-service.git"
},
"keywords": [
"pandoc",
"text",
"markup",
"format",
"convert"
],
"author": "Dmitry Demenchuk <dmitry@demenchuk.me>",
"bugs": {
"url": "https://github.com/mrded/pandoc-as-a-service/issues"
},
"homepage": "http://pandoc-as-a-service.com",
"license": "BSD-2-Clause",
"dependencies": {
"ejs": "^3.1.7",
"express": "^4.13.0",
"pdc": "^0.2.2"
},
"devDependencies": {
"mocha": "^2.2.5",
"request": "^2.58.0"
},
"scripts": {
"start": "node index.js $PORT",
"test": "mocha tests"
}
}