forked from OpenZeppelin/solidity-docgen
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
49 lines (49 loc) · 1.14 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
{
"name": "@augurproject/solidity-docgen",
"version": "0.2.0-alpha.3",
"description": "Solidity API documentation automatic generator.",
"bin": {
"solidity-docgen": "./dist/cli.js"
},
"files": [
"dist"
],
"scripts": {
"build": "babel --out-dir dist src",
"test": "jest",
"test:watch": "jest --watch",
"prepare": "npm run build"
},
"dependencies": {
"async-file": "^2.0.2",
"commander": "^2.14.1",
"glob": "^7.1.3",
"js-yaml": "^3.12.2",
"lodash": "^4.17.11",
"react": "^16.8.3",
"react-dom": "^16.8.3",
"solc": "0.5.4"
},
"devDependencies": {
"@babel/cli": "^7.2.3",
"@babel/core": "^7.2.2",
"@babel/plugin-proposal-object-rest-spread": "^7.4.0",
"@babel/preset-env": "^7.3.1",
"@babel/preset-react": "^7.0.0",
"@babel/register": "^7.0.0",
"jest": "^24.1.0",
"react-test-renderer": "^16.8.1"
},
"keywords": [
"solidity",
"api",
"documentation",
"automatic",
"generator"
],
"author": "[email protected]",
"contributors": [
"Emilio Almansi <[email protected]> (http://ealmansi.github.io/)"
],
"license": "MIT"
}