-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
94 lines (94 loc) · 3.13 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
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
{
"name": "@frontier-token-research/trl-contracts-poc",
"version": "1.0.3",
"description": "Toolset for creation and classification of different decentralized curated lists",
"main": "truffle.js",
"directories": {
"doc": "docs",
"test": "test"
},
"scripts": {
"start": "npm run start:testrpc",
"start-integration": "npm run start:testrpc-integration",
"start:testrpc": "ganache-cli -p 8545 -i 5777",
"start:testrpc-integration": "ganache-cli -m 'brand insane federal bargain nice pilot recall zero disagree action arrive hint' -p 8546",
"mock": "truffle exec scripts/fill_registries.js",
"mock-infura": "truffle exec scripts/fill_registries.js --network rinkeby_infura",
"compile": "truffle compile",
"migrate": "truffle migrate",
"test-integration-all": "npm run migrate-integration && npm run test-integration",
"migrate-integration": "truffle migrate --reset --compile-all --network development_migration_test",
"test": "truffle test",
"test-integration": "truffle test integration_tests/integrationTest.js --network development_migration_test",
"sleep": "./sleep.sh",
"coverage": "./node_modules/.bin/solidity-coverage"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Frontier-project/FrontierLists.git"
},
"release": {
"branch": "develop"
},
"keywords": [
"lists",
"token",
"etheruem"
],
"author": "frontier-token-research",
"license": "ISC",
"bugs": {
"url": "https://github.com/Frontier-project/FrontierLists/issues"
},
"homepage": "https://github.com/Frontier-project/FrontierLists#readme",
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-polyfill": "^6.26.0",
"babel-preset-env": "^1.6.1",
"babel-preset-es2015": "^6.18.0",
"babel-preset-stage-2": "^6.24.1",
"babel-preset-stage-3": "^6.17.0",
"babel-register": "^6.23.0",
"cz-conventional-changelog": "^2.1.0",
"eslint": "^5.0.0-alpha.2",
"eslint-config-standard": "^12.0.0-alpha.0",
"eslint-plugin-import": "^2.11.0",
"eslint-plugin-node": "^6.0.1",
"eslint-plugin-promise": "^3.7.0",
"eslint-plugin-standard": "^3.1.0",
"eth-gas-reporter": "^0.1.12",
"solidity-coverage": "^0.5.0",
"solidity-metadata-uploader": "0.0.1"
},
"dependencies": {
"@frontier-token-research/cron": "dev",
"@frontier-token-research/role-registries": "2.0.0",
"@frontier-token-research/contract-manager-client": "dev",
"bs58": "^4.0.1",
"dotenv": "^5.0.1",
"ethereumjs-testrpc-sc": "^6.1.2",
"ethjs": "^0.4.0",
"fs": "0.0.1-security",
"ganache-cli": "^6.1.0",
"init": "^0.1.2",
"js-sha3": "^0.7.0",
"mocha": "^5.2.0",
"moment": "^2.22.2",
"npm": "^6.4.1",
"openzeppelin-solidity": "2.0.0",
"original-require": "^1.0.1",
"run-with-testrpc": "^0.3.0",
"semantic-release": "^15.9.16",
"sha3": "^2.0.0",
"solc": "0.4.24",
"truffle": "4.1.14",
"truffle-hdwallet-provider": "0.0.3",
"truffle-hdwallet-provider-privkey": "^0.2.0",
"zos-lib": "1.4.0"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
}
}