-
Notifications
You must be signed in to change notification settings - Fork 31
/
package.json
86 lines (86 loc) · 3.01 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
{
"name": "@openst/mosaic-contracts",
"version": "0.12.0",
"description": "Mosaic contracts provide ABIs and BINs for EVM smart contracts to run mosaic.",
"keywords": [
"Mosaic",
"Gateway",
"Anchor",
"OpenST",
"OST",
"Simple Token",
"Token Economy",
"web3",
"Ethereum",
"EIP20"
],
"homepage": "https://openst.org/",
"repository": {
"type": "git",
"url": "https://github.com/OpenST/mosaic-contracts"
},
"devDependencies": {
"@types/chai": "4.1.7",
"@types/ethereumjs-util": "5.2.0",
"@types/mocha": "5.2.6",
"@types/web3": "1.0.19",
"@typescript-eslint/eslint-plugin": "1.9.0",
"@typescript-eslint/parser": "1.9.0",
"@typescript-eslint/typescript-estree": "1.9.0",
"abi-decoder": "1.2.0",
"assert": "1.4.1",
"bn.js": "4.11.8",
"chai": "4.2.0",
"colors": "1.3.3",
"crypto": "1.0.1",
"eslint": "5.16.0",
"eslint-config-airbnb-base": "13.1.0",
"eslint-plugin-import": "2.17.2",
"eslint-plugin-json": "1.4.0",
"ethereumjs-util": "6.1.0",
"ganache-cli": "6.4.3",
"inquirer": "6.2.1",
"keccak": "1.4.0",
"mocha": "5.2.0",
"openzeppelin-solidity": "2.1.1",
"rlp": "2.2.3",
"solidity-coverage": "0.5.11",
"solparse": "2.2.5",
"truffle": "5.0.19",
"ts-node": "8.1.0",
"typescript": "3.5.3",
"wait-port": "0.2.2",
"web3": "1.0.0-beta.37",
"ts-generator": "0.0.8",
"typechain": "0.3.14",
"fs-extra": "7.0.1"
},
"scripts": {
"update": "git submodule update --init --recursive && npm ci",
"compile": "truffle compile",
"compile:ts": "tsc",
"compile:all": "truffle compile --all && tsc",
"generate:test_proofs": "./proof_generation/main.sh",
"test": "npm run test:deployment_tool && npm run test:fuzzy_proof_generator && npm run test:integration && npm run test:unit && npm run build:package",
"test:range": "./tools/test_range.sh",
"test:deployment_tool": "mocha tools/deployment_tool/test",
"test:fuzzy_proof_generator": "./tools/fuzzy_proof_generator_tool/test/run.sh",
"test:integration": "cd test_integration && ./main.sh",
"test:unit": "truffle test",
"ganache": "sh tools/runGanacheCli.sh",
"build:package": "node tools/build_package.js",
"deploy:gateway": "npm run compile && node tools/blue_deployment/scripts/step1_origin_contracts.js",
"lint": "eslint {test,test_integration,tools,proof_generation} -c .eslintrc.json --ext .js --ext .ts",
"generate:interacts": "ts-generator ts-generator.json && node tools/contract_interact_generator.js",
"clean": "rm -r contract_build/contracts.json dist/* interacts/* build/* 2> /dev/null || true",
"copy:interacts": "cp interacts/*.d.ts dist/interacts",
"prepare:publish": "npm run clean && npm run compile && npm run build:package && npm run generate:interacts && npm run compile:ts && npm run copy:interacts"
},
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"dist"
],
"author": "OpenST Foundation Ltd.",
"license": "Apache-2.0"
}