-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
59 lines (59 loc) · 1.53 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
{
"name": "@samatech/eth-docgen",
"version": "0.1.0",
"description": "Generate html documentation from Ethereum smart contracts",
"main": "dist/eth-docgen.js",
"module": "dist/eth-docgen.mjs",
"types": "dist/eth-docgen.d.ts",
"bin": {
"eth-docgen": "./dist/eth-docgen.js"
},
"files": [
"dist",
"lib"
],
"scripts": {
"build.tsc": "tsc",
"build.bundle": "rollup -c",
"build": "rimraf dist && npm run build.tsc && npm run build.bundle",
"example": "ts-node --files src/cli.ts -s -c example/Example.sol -o ./output",
"test": "mocha",
"release": "npx git-ensure -a && npx bumpp --commit --tag --push"
},
"repository": {
"type": "git",
"url": "git+https://github.com/samatech/eth-docgen.git"
},
"keywords": [
"fetch",
"api"
],
"author": "Sam Pullman",
"license": "MIT",
"bugs": {
"url": "https://github.com/samatech/eth-docgen/issues"
},
"homepage": "https://github.com/samatech/eth-docgen#readme",
"dependencies": {
"autoprefixer": "^10.2.6",
"debug": "^4.3.1",
"fast-glob": "^3.2.5",
"postcss": "^8.3.2",
"postcss-nested": "^5.0.5",
"postcss-simple-vars": "^6.0.3",
"solc": "^0.8.4",
"yargs": "17.0.1"
},
"devDependencies": {
"@rollup/plugin-commonjs": "^19.0.0",
"@rollup/plugin-json": "^4.1.0",
"@rollup/plugin-node-resolve": "^13.0.0",
"@types/yargs": "^17.0.0",
"rimraf": "^3.0.2",
"rollup": "^2.49.0",
"ts-jest": "^26.5.6",
"ts-node": "^10.0.0",
"tslib": "^2.2.0",
"typescript": "^4.2.4"
}
}