forked from OpenZeppelin/solidity-docgen
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
41 lines (41 loc) · 1.08 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
{
"name": "tsolidity-docgen-dev",
"version": "0.66.0-beta.05",
"description": "Fork from OpenZeppelin/solidity-docgen. Documentation generator for Ton-Solidity smart contracts.",
"repository": "github:cyace84/tsolidity-docgen",
"keywords": [
"solidity",
"documentation"
],
"author": "Valentyn Zavizion <[email protected]>",
"license": "MIT",
"main": "dist/index.js",
"files": [
"dist",
"src"
],
"scripts": {
"build": "tsc",
"clean": "rimraf dist tsconfig.tsbuildinfo",
"coverage": "c8 npm run test",
"docs": "oz-docs -c docs",
"docs:watch": "npm run docs watch",
"prepare": "npm run clean && npm run build",
"test": "ava"
},
"dependencies": {
"asciidoctor": "^3.0.2",
"handlebars": "4.7.7",
"solidity-ast": "0.4.38"
},
"devDependencies": {
"@types/mocha": "^7.0.2",
"@types/node": "^14.18.26",
"ava": "^5.0.0",
"c8": "^7.10.0",
"code-style": "github:OpenZeppelin/code-style",
"openzeppelin-docs-utils": "github:OpenZeppelin/docs-utils",
"ts-node": "^10.4.0",
"typescript": "^4.0.0"
}
}