This repository has been archived by the owner on Apr 9, 2019. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
64 lines (64 loc) · 1.63 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": "markdownserver",
"version": "2.2.3",
"description": "Simple markdown server with code syntax highlighting",
"main": "src/listen.js",
"scripts": {
"start": "gulp",
"test": "mocha --recursive -R spec",
"test-watch": "mocha watch --recursive -R nyan",
"test-cover": "istanbul cover ./node_modules/mocha/bin/_mocha -- --recursive -R spec",
"snyk-protect": "snyk protect",
"prepublish": "npm run snyk-protect"
},
"bin": {
"markdownserver": "./src/markdownserver-cli.js"
},
"repository": {
"type": "git",
"url": "https://github.com/superzadeh/MarkdownServer"
},
"author": {
"name": "Superzadeh",
"email": "[email protected]"
},
"license": "MIT",
"dependencies": {
"bluebird": "^3.4.6",
"commander": "^2.9.0",
"errorhandler": "^1.5.0",
"express": "^4.13.4",
"highlightjs": "^8.7.0",
"httpntlm": "^1.7.3",
"istanbul": "^0.4.5",
"jade": "^1.11.0",
"jquery": "^3.0.0",
"markdown-toc": "^0.12.3",
"marked": "^0.3.5",
"morgan": "^1.6.1",
"raphael": "^2.2.7",
"request": "^2.79.0",
"semantic-ui": "^2.2.6",
"underscore": "^1.8.3",
"snyk": "^1.30.1"
},
"devDependencies": {
"browser-sync": "^2.11.1",
"chai": "^3.5.0",
"coveralls": "2.3.0",
"gulp": "^3.9.0",
"gulp-istanbul": "^0.10.3",
"gulp-mocha": "^2.2.0",
"gulp-nodemon": "^2.0.6",
"gulp-util": "^3.0.7",
"istanbul": "^0.4.2",
"mocha": "^2.4.4",
"mockery": "^1.4.1",
"nock": "^7.2.2",
"should": "^8.2.2",
"sinon": "^1.17.3",
"sinon-as-promised": "^4.0.0",
"supertest": "^1.1.0"
},
"snyk": true
}