-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpackage.json
72 lines (72 loc) · 2.21 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
{
"name": "@tokenysolutions/complydefi",
"version": "0.1.0",
"description": "A compliance module for DeFi.",
"main": "index.js",
"directories": {
"test": "test"
},
"files": [
"build",
"contracts",
"index.js",
"index.d.ts"
],
"scripts": {
"build": "truffle compile && truffle-flattener contracts/example/gooseComply/GooseComply.sol > build/GooseComply.sol && truffle-flattener contracts/factory/IdFactory.sol > build/IdFactory.sol && truffle-flattener contracts/example/gooseFinance/EggToken.sol > build/EggToken.sol",
"coverage": "truffle run coverage",
"test": "truffle test",
"lint:js": "eslint \"test/*.js\"",
"lint:js-fix": "eslint \"test/*.js\" --fix",
"lint": "npm run lint:sol",
"lint:sol": "solhint \"contracts/*.sol\""
},
"repository": {
"type": "git",
"url": "git+https://github.com/TokenySolutions/ComplyDefi.git"
},
"author": "Tokeny Solutions",
"license": "SEE LICENSE IN LICENSE.md",
"bugs": {
"url": "https://github.com/TokenySolutions/ComplyDefi/issues"
},
"homepage": "https://github.com/TokenySolutions/ComplyDefi#README",
"devDependencies": {
"@commitlint/cli": "^12.1.4",
"@openzeppelin/contracts": "^4.2.0",
"@onchain-id/solidity": "^1.4.0",
"chai": "^4.3.4",
"chai-as-promised": "^7.1.1",
"eslint": "^7.29.0",
"eslint-config-airbnb-base": "^14.2.1",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-chai-friendly": "^0.7.1",
"eslint-plugin-import": "^2.23.4",
"eslint-plugin-prettier": "^3.4.0",
"eslint-plugin-security": "^1.4.0",
"eth-gas-reporter": "^0.2.22",
"ganache-cli": "^6.12.2",
"husky": "^7.0.0",
"lint-staged": "^11.0.0",
"prettier": "^2.3.2",
"prettier-plugin-solidity": "^1.0.0-beta.13",
"@openzeppelin/contracts-upgradeable": "^4.1.0",
"solhint": "^3.3.6",
"solidity-coverage": "^0.7.17",
"solidity-docgen": "^0.5.13",
"truffle": "^5.4.8",
"truffle-flattener": "^1.5.0",
"web3": "^1.5.2"
},
"husky": {
"hooks": {
"commit-msg": "node ./scripts/commit-msg.js $HUSKY_GIT_PARAMS && commitlint -E HUSKY_GIT_PARAMS",
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.js": [
"eslint"
]
}
}