-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
53 lines (53 loc) · 1.27 KB
/
Copy pathpackage.json
File metadata and controls
53 lines (53 loc) · 1.27 KB
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
{
"name": "moleculer-markdown",
"version": "1.0.0",
"description": "Translates Markdown to Html",
"main": "index.js",
"scripts": {
"dev": "nodemon examples/index.js",
"test": "jest",
"coverage": "jest --coverage",
"lint": "eslint --ext=.js src test",
"deps": "npm-check -u",
"readme": "node node_modules/moleculer-docgen/index.js -t README.md src/index.js",
"coverall": "cat ./coverage/lcov.info | ./node_modules/coveralls/bin/coveralls.js"
},
"keywords": [
"microservice",
"moleculer"
],
"author": "Alex Sofronie <alsofronie@gmail.com>",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/alsofronie/moleculer-markdown"
},
"peerDependencies": {
"moleculer": "^0.13.0 || ^0.12.0"
},
"devDependencies": {
"benchmarkify": "2.1.0",
"coveralls": "3.0.2",
"eslint": "5.2.0",
"jest": "23.4.2",
"jest-cli": "23.4.2",
"lolex": "2.7.1",
"moleculer": "0.13.1",
"moleculer-docgen": "0.2.1",
"nodemon": "1.18.3",
"npm-check": "5.7.1"
},
"jest": {
"testEnvironment": "node",
"coveragePathIgnorePatterns": [
"/node_modules/",
"/test/services/"
]
},
"engines": {
"node": ">= 6.x.x"
},
"dependencies": {
"showdown": "^1.8.6"
}
}