This repository has been archived by the owner on Mar 12, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
59 lines (59 loc) · 1.74 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": "actus-solidity",
"version": "0.3.1-beta.0",
"description": "ACTUS smart contracts",
"author": "atpar AG",
"authors": [
"jo-es <[email protected]>"
],
"license": "Apache-2.0",
"repository": "https://github.com/atpar/actus-solidity",
"bugs": {
"url": "https://github.com/atpar/actus-solidity/issues"
},
"keywords": [
"Ethereum",
"Solidity",
"ACTUS"
],
"files": [
"actus-resources",
"artifacts/",
"build/",
"contracts/",
"deployments/",
"scripts/",
"test/",
"truffle-config.js"
],
"scripts": {
"build": "npm run compile && npm run generate-artifacts",
"compile": "truffle compile",
"coverage": "truffle run coverage",
"generate-artifacts": "rm -rf ./artifacts && ./scripts/truffle-minimize.sh ./build/contracts ./artifacts",
"generate-docs": "./scripts/generate-docs.sh",
"migrate:goerli": "truffle migrate --network goerli",
"migrate:kovan": "truffle migrate --network kovan",
"migrate:rinkeby": "truffle migrate --network rinkeby",
"migrate:ropsten": "truffle migrate --network ropsten",
"lint": "solium -d contracts/",
"lint:fix": "solium -d contracts/ --fix",
"test": "./scripts/test.sh"
},
"devDependencies": {
"actus-dictionary": "https://github.com/actusfrf/actus-dictionary.git",
"bignumber.js": "^7.2.1",
"coveralls": "^3.0.9",
"csvtojson": "^2.0.8",
"eth-sig-util": "2.1.1",
"ethlint": "^1.2.3",
"ganache-cli": "^6.4.3",
"openzeppelin-solidity": "^2.1.2",
"openzeppelin-test-helpers": "^0.1.2",
"solidity-coverage": "^0.7.0-beta.3",
"truffle": "^5.1.2",
"truffle-hdwallet-provider": "^1.0.9",
"truffle-security": "^1.4.4",
"web3-utils": "^1.2.4"
}
}