-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathpackage.json
103 lines (103 loc) · 3.29 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
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
{
"name": "soldoc",
"version": "0.1.3-beta.3",
"description": "An solidity documentation generator, based in NatSpec format.",
"main": "dist/index.js",
"bin": {
"soldoc": "dist/cli.js"
},
"files": [
"/dist/**/*.js",
"/dist/**/*.d.ts",
"/dist/**/*.html"
],
"scripts": {
"preversion": "yarn",
"predemo:html": "yarn build",
"demo:html": "./dist/cli.js --ignore Ignore.sol,IERC20.sol docs/ test/contracts",
"demo:pdf": "./dist/cli.js --output pdf docs/ test/contracts/Plane.sol",
"lint": "eslint \"src/**/*.ts\"",
"build": "tsc && cp -r src/template dist && chmod u+x dist/cli.js",
"pretest": "yarn build",
"test": "jest --testTimeout=40000",
"build:watch": "tsc -w && cp -r src/template dist && chmod u+x dist/cli.js",
"test:watch": "jest --testTimeout=40000 --watchAll",
"coverage": "jest --coverage --testTimeout=40000",
"precoverage:ci": "yarn build",
"coverage:ci": "jest --coverage --testTimeout=40000 --detectOpenHandles --forceExit && cat ./coverage/lcov.info | coveralls",
"docs": "typedoc --out docs src"
},
"repository": {
"type": "git",
"url": "git+https://github.com/hq20/soldoc.git"
},
"keywords": [
"solidity",
"solidity-contracts",
"solidity-documentation",
"documentation",
"document",
"documentation-tool",
"smart-contracts",
"html",
"pdf",
"pdf-generation"
],
"author": "HQ20",
"license": "GPL-3.0-only",
"bugs": {
"url": "https://github.com/hq20/soldoc/issues"
},
"homepage": "https://github.com/hq20/soldoc#readme",
"peerDependencies": {
"directory-tree": "^2.2.0",
"highlight.js": "^10.0.0",
"markdown-it": "^10.0.0",
"markdown-it-emoji": "^1.4.0",
"meow": "^7.0.0",
"mustache": "^4.0.0",
"node-emoji": "^1.10.0",
"pdf-from-html": "^0.1.2-beta.0"
},
"dependencies": {
"@hq20/solidity-parser-antlr": "0.4.12-alpha.0",
"@typescript-eslint/typescript-estree": "3.5.0"
},
"devDependencies": {
"@types/highlight.js": "9.12.4",
"@types/jest": "26.0.15",
"@types/meow": "5.0.0",
"@types/mustache": "4.0.1",
"@types/node": "14.14.5",
"@types/node-emoji": "1.8.1",
"@typescript-eslint/eslint-plugin": "2.34.0",
"@typescript-eslint/eslint-plugin-tslint": "4.6.0",
"@typescript-eslint/parser": "2.34.0",
"coveralls": "3.1.0",
"directory-tree": "2.2.5",
"eslint": "6.8.0",
"eslint-plugin-import": "2.22.1",
"expect.js": "0.3.1",
"highlight.js": "10.3.1",
"jest": "26.6.1",
"markdown-it": "12.0.2",
"markdown-it-emoji": "2.0.0",
"meow": "7.1.1",
"mustache": "4.0.1",
"node-emoji": "1.10.0",
"pdf-from-html": "0.1.2",
"pdf-to-text": "0.0.7",
"puppeteer": "3.3.0",
"tslint": "^6.0.0",
"typedoc": "0.19.2",
"typescript": "3.9.7"
},
"jest": {
"collectCoverage": true,
"collectCoverageFrom": [
"dist/**/*.js",
"!dist/**/cli.js",
"!./node_modules/"
]
}
}