-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
73 lines (73 loc) · 1.56 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
65
66
67
68
69
70
71
72
73
{
"name": "dokapi",
"description": "A Markdown-based Website generator with advanced features",
"keywords": [
"documentation",
"generator",
"markdown",
"html",
"pdf",
"api",
"doc",
"template",
"mustache",
"variable",
"code",
"okapi"
],
"engines": {
"node": ">=14.0.0"
},
"version": "2.0.9",
"private": false,
"repository": {
"type": "git",
"url": "git+https://github.com/Linkurious/dokapi.git"
},
"author": {
"name": "David Rapin",
"url": "https://github.com/davidrapin"
},
"contributors": [],
"bugs": {
"url": "https://github.com/Linkurious/dokapi/issues"
},
"license": "MIT",
"files": [
"src"
],
"main": "src/dokapi.js",
"bin": {
"dokapi": "src/dokapi.js"
},
"publishConfig": {
"access": "public"
},
"scripts": {
"//": "invoked using >npm run [script-name]",
"lint": "eslint ./src",
"patch": "npm version patch && git push && npm publish",
"minor": "npm version minor && git push && npm publish",
"test": "mocha test/**/*.spec.js"
},
"dependencies": {
"fs-extra": "10.0.1",
"valcheck": "1.0.20",
"lodash.difference": "4.5.0",
"lodash.defaults": "4.2.0",
"marked": "3.0.8",
"watch": "1.0.2",
"commander": "2.20.3",
"highlight.js": "11.3.1",
"highlightjs-cypher": "1.1.5"
},
"devDependencies": {
"eslint": "3.9.1",
"eslint-plugin-import-order": "2.1.4",
"ink-docstrap": "1.1.4",
"istanbul": "1.1.0-alpha.1",
"jsdoc": "3.4.1",
"mocha": "6.1.4",
"should": "13.2.3"
}
}