-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
43 lines (43 loc) · 903 Bytes
/
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
{
"name": "maggie",
"description": "Git based wiki generator",
"version": "0.0.0",
"author": "Mackenzie Craig",
"bin": {
"maggie": "./bin/run"
},
"bugs": "https://github.com/tehp/maggie/issues",
"devDependencies": {
"@oclif/dev-cli": "^1.26.0"
},
"engines": {
"node": ">=8.0.0"
},
"files": [
"/bin",
"/src"
],
"homepage": "https://github.com/tehp/maggie",
"keywords": [
"oclif"
],
"license": "MIT",
"main": "src/index.js",
"oclif": {
"bin": "maggie"
},
"repository": "tehp/maggie",
"scripts": {
"start": "./bin/run -i ultralight",
"prepack": "oclif-dev readme",
"test": "echo NO TESTS",
"version": "oclif-dev readme && git add README.md"
},
"dependencies": {
"@oclif/command": "^1.8.0",
"@oclif/config": "^1.17.0",
"@oclif/plugin-help": "^3.2.2",
"marked": "^2.0.0",
"yaml": "^1.10.0"
}
}