-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
38 lines (38 loc) · 1.02 KB
/
Copy pathpackage.json
File metadata and controls
38 lines (38 loc) · 1.02 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
{
"name": "markdown-data",
"version": "0.6.0",
"description": "Markdown preprocessor for 'tagged metadata' and 'fenced data blocks'.",
"main": "index.js",
"scripts": {
"pretest": "npm install codeclimate-test-reporter -g",
"test": "standard & tap test/*.js --coverage --reporter spec",
"posttest": "tap --coverage-report=lcov && codeclimate-test-reporter < ./coverage/lcov.info",
"test-local": "standard & tap test/*.js --coverage --reporter spec"
},
"repository": {
"type": "git",
"url": "git+https://github.com/nodexo/markdown-data"
},
"keywords": [
"data blocks",
"tagged metadata",
"data",
"metadata",
"markdown"
],
"author": "Michael Kortstiege",
"license": "ISC",
"bugs": {
"url": "https://github.com/nodexo/markdown-data/issues"
},
"homepage": "https://github.com/nodexo/markdown-data#readme",
"devDependencies": {
"standard": "^8.5.0",
"tap": "^8.0.1"
},
"dependencies": {
"js-yaml": "^3.7.0",
"moml": "^1.0.1",
"toml": "^2.3.0"
}
}