-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
59 lines (59 loc) · 1.47 KB
/
package.json
File metadata and controls
59 lines (59 loc) · 1.47 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
54
55
56
57
58
59
{
"name": "@cdoublev/markdown-api",
"description": "Command line interface to build and manage (JSON) API endpoints from JS and markdown source files.",
"author": "Guillaume Lebas",
"license": "MIT",
"keywords": [
"markdown"
],
"version": "0.3.5",
"engines": {
"node": ">= 14"
},
"homepage": "https://github.com/creativewave/markdown-api",
"bugs": "https://github.com/creativewave/markdown-api/issues",
"repository": "github:creativewave/markdown-api",
"bin": {
"api": "bin/api.js"
},
"directories": {
"doc": "doc",
"lib": "lib",
"test": "test"
},
"files": [
"bin",
"commands",
"lib",
"index.js"
],
"exports": {
"./*": "./commands/*.js"
},
"scripts": {
"lint": "eslint .",
"safe-publish": "npm run lint && npm run test && npm publish",
"test": "jest",
"test:inspect": "node --inspect=0.0.0.0:9222 ./node_modules/.bin/jest --watchAll -b",
"test:report": "jest -i --reporters='jest-junit'",
"test:watch": "jest --watchAll -b"
},
"dependencies": {
"folktale": "^2.3.2",
"highlight.js": "^10.6.0",
"imagemin": "^7.0.1",
"imagemin-webp": "^6.0.0",
"lodash": "^4.17.20",
"marked": "^2.0.0",
"watchpack": "^2.1.1"
},
"devDependencies": {
"@cdoublev/eslint-config": "^0.8.2",
"benchmark": "^2.1.4",
"eslint": "^7.20.0",
"eslint-plugin-jest": "^24.1.3",
"eslint-plugin-node": "^11.1.0",
"jest": "^26.6.3",
"jest-junit": "^12.0.0"
}
}