-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
54 lines (54 loc) · 1.3 KB
/
package.json
File metadata and controls
54 lines (54 loc) · 1.3 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
{
"name": "ethdoc",
"description": " A command line tool that generates Smart Contract documentation based off of your solidity file.",
"version": "0.0.0",
"author": " @iMuzz",
"bin": {
"ethdoc": "./bin/run"
},
"bugs": "https://github.com/iMuzz/ethdoc/issues",
"dependencies": {
"@0xproject/sol-compiler": "^1.0.4",
"@oclif/command": "^1.4.36",
"@oclif/config": "^1.6.33",
"@oclif/plugin-help": "^2.0.5",
"execa": "^0.10.0",
"listr": "^0.14.1",
"rxjs": "^6.2.2",
"simple-git": "^1.96.0"
},
"devDependencies": {
"eslint": "^4.19.1",
"eslint-config-oclif": "^1.5.1"
},
"engines": {
"node": ">=8.0.0"
},
"files": [
"/bin",
"/npm-shrinkwrap.json",
"/oclif.manifest.json",
"/src"
],
"homepage": "https://github.com/iMuzz/ethdoc",
"keywords": [
"oclif"
],
"license": "MIT",
"main": "src/index.js",
"oclif": {
"commands": "./src/commands",
"bin": "ethdoc",
"plugins": [
"@oclif/plugin-help"
]
},
"repository": "iMuzz/ethdoc",
"scripts": {
"postpack": "rm -f oclif.manifest.json npm-shrinkwrap.json",
"posttest": "eslint .",
"prepack": "oclif-dev manifest && oclif-dev readme && npm shrinkwrap",
"test": "echo NO TESTS",
"version": "oclif-dev readme && git add README.md"
}
}