forked from onchain-id/solidity
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
59 lines (59 loc) · 1.55 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": "@onchain-id/solidity",
"version": "1.4.0",
"description": "Ethereum solidity smart contracts for Blockchain OnchainID identities.",
"files": [
"build",
"contracts",
"index.js",
"index.d.ts"
],
"scripts": {
"build": "truffle compile",
"console": "truffle console",
"coverage": "truffle run coverage",
"docgen": "solidity-docgen ./ contracts/ docs/api",
"lint": "npm run lint:sol",
"lint:sol": "solhint --max-warnings 0 \"contracts/**/*.sol\"",
"test": "truffle test"
},
"repository": {
"type": "git",
"url": "git+https://github.com/onchain-id/solidity.git"
},
"keywords": [
"onchainid",
"identity",
"erc734",
"erc735",
"ethereum",
"solidity",
"smart contracts"
],
"author": "OnchainID Organization",
"license": "ISC",
"bugs": {
"url": "https://github.com/onchain-id/solidity/issues"
},
"homepage": "https://github.com/onchain-id/solidity#readme",
"devDependencies": {
"@openzeppelin/contracts": "^3.3.0",
"ansi-colors": "^4.1.1",
"chai": "^4.2.0",
"chai-as-promised": "^7.1.1",
"chai-bignumber": "^3.0.0",
"chai-bn": "^0.2.1",
"eslint": "^7.18.0",
"eslint-config-airbnb-base": "^14.2.1",
"eslint-config-prettier": "^7.2.0",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-prettier": "^3.3.1",
"ethereumjs-abi": "^0.6.8",
"ethereumjs-util": "^7.0.7",
"prettier": "^2.2.1",
"solhint": "^3.3.2",
"solidity-coverage": "^0.7.14",
"solidity-docgen": "^0.5.11",
"truffle": "^5.1.63"
}
}