-
Notifications
You must be signed in to change notification settings - Fork 13
/
package.json
64 lines (64 loc) · 2.02 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
{
"name": "@confluxfans/solidity",
"version": "0.3.3",
"description": "Common useful contracts in Conflux DAPP developments",
"main": "index.js",
"files": [
"/contracts/**/*.sol",
"/build/contracts/*.json",
"!/contracts/mocks/**/*"
],
"scripts": {
"compile": "hardhat compile",
"coverage": "hardhat coverage",
"lint": "npm run lint:js && npm run lint:sol",
"lint:fix": "npm run lint:js:fix && npm run lint:sol:fix",
"lint:js": "eslint --ignore-path .gitignore .",
"lint:js:fix": "eslint --ignore-path .gitignore . --fix",
"lint:sol": "solhint 'contracts/**/*.sol' && prettier -c 'contracts/**/*.sol'",
"lint:sol:fix": "prettier --write \"contracts/**/*.sol\"",
"docs": "oz-docs",
"docs:watch": "npm run docs watch contracts 'docs/*.hbs' docs/helpers.js",
"prepare-docs": "scripts/prepare-docs.sh",
"prepublish": "rimraf build contracts/build artifacts cache",
"prepare": "env COMPILE_MODE=production npm run compile",
"prepack": "scripts/prepack.sh",
"version": "scripts/release/version.sh"
},
"repository": {
"type": "git",
"url": "git+https://github.com/conflux-fans/conflux-contracts.git"
},
"author": "",
"license": "MIT",
"bugs": {
"url": "https://github.com/conflux-fans/conflux-contracts/issues"
},
"homepage": "https://github.com/conflux-fans/conflux-contracts#readme",
"keywords": [
"solidity",
"conflux",
"smart",
"contracts",
"security"
],
"dependencies": {
"@openzeppelin/contracts": "^4.1.0"
},
"devDependencies": {
"eslint": "^6.5.1",
"eslint-config-standard": "^14.1.1",
"eslint-plugin-import": "^2.20.0",
"eslint-plugin-mocha-no-only": "^1.1.0",
"eslint-plugin-node": "^10.0.0",
"eslint-plugin-promise": "^4.2.1",
"eslint-plugin-standard": "^4.0.1",
"hardhat": "^2.3.0",
"prettier": "^2.3.0",
"prettier-plugin-solidity": "^1.0.0-beta.13",
"solhint": "^3.3.6",
"solidity-coverage": "^0.7.16",
"rimraf": "^3.0.2",
"solidity-docgen": "^0.5.3"
}
}