forked from primitivefinance/primitive-dodoc
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
54 lines (54 loc) · 1.39 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
{
"name": "@b00ste/hardhat-dodoc",
"version": "0.3.16",
"description": "Zero-config Hardhat plugin to generate documentation for all your Solidity contracts",
"repository": "github:b00ste/primitive-dodoc",
"author": "Primitive",
"license": "MIT",
"main": "dist/src/index.js",
"types": "dist/src/index.d.ts",
"keywords": [
"ethereum",
"smart-contracts",
"solidity",
"hardhat",
"hardhat-plugin",
"natspec"
],
"scripts": {
"build": "rm -rf dist && tsc && cp ./src/template.sqrl ./dist/src",
"compile": "hardhat compile",
"prepublishOnly": "npm run build"
},
"files": [
"LICENSE",
"README.md",
"dist/src/"
],
"peerDependencies": {
"hardhat": "^2.6.4",
"squirrelly": "^8.0.8"
},
"devDependencies": {
"@nomiclabs/hardhat-ethers": "^2.0.2",
"@nomiclabs/hardhat-waffle": "^2.0.1",
"@types/chai": "^4.2.22",
"@types/mocha": "^9.0.0",
"@types/node": "^16.10.1",
"@typescript-eslint/eslint-plugin": "^4.21.0",
"@typescript-eslint/parser": "^4.21.0",
"chai": "^4.3.4",
"eslint": "^7.24.0",
"eslint-config-airbnb-base": "^14.2.1",
"eslint-plugin-import": "^2.22.1",
"ethereum-waffle": "^3.4.0",
"ethers": "^5.4.7",
"hardhat": "^2.6.4",
"ts-node": "^10.2.1",
"typescript": "^4.2.4"
},
"dependencies": {
"@lukso/lsp-smart-contracts": "^0.14.0",
"squirrelly": "^8.0.8"
}
}