-
Notifications
You must be signed in to change notification settings - Fork 12
/
Copy pathpackage.json
61 lines (61 loc) · 2.24 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
{
"name": "Mosaic",
"version": "0.1.0",
"description": "Mosaic",
"scripts": {
"compile": "truffle compile --all",
"compile:ts": "tsc --build tsconfig.json",
"lint:js": "find ./test -name \"*.js\" | xargs eslint",
"lint:js:fix": "npm run lint:js -- --fix",
"lint:sol:solium": "solium --dir contracts/",
"lint:sol:solium:fix": "npm run lint:sol:solium -- --fix",
"test": "npm run test:contracts",
"test:contracts": "truffle test",
"test:integration": "npm run clean && npm run compile && npm run build:package && npm run generate:interacts && cd test_integration/erc20_gateway && tsc && ./main.sh",
"test:dev": "truffle test test/coconsensus/commit_checkpoint.js",
"ganache-cli": "./tools/run_ganache_cli.sh",
"make:all": "lint:sol:solium && lint:js && compile:all && test:contracts",
"clean": "rm -r contract_build/contracts.json dist/* interacts/* build/* 2> /dev/null || true",
"build:package": "node tools/build_package.js",
"generate:interacts": "ts-generator ts-generator.json && node tools/contract_interact_generator.js",
"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"
],
"repository": {
"type": "git",
"url": "git+https://github.com/mosaicdao/mosaic-1.git"
},
"author": "OpenST Foundation",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/mosaicdao/mosaic-1/issues"
},
"homepage": "https://github.com/mosaicdao/mosaic-1#readme",
"devDependencies": {
"@types/mocha": "5.2.7",
"@types/web3": "1.2.2",
"abi-decoder": "2.2.2",
"assert": "2.0.0",
"bn.js": "5.0.0",
"chai": "4.2.0",
"eslint": "5.16.0",
"eslint-config-airbnb-base": "13.1.0",
"eslint-plugin-import": "2.17.3",
"ethlint": "1.2.4",
"ganache-cli": "6.8.1-beta.0",
"mocha": "6.2.2",
"openzeppelin-solidity": "2.1.1",
"solium": "1.2.4",
"truffle": "5.0.43",
"ts-generator": "0.0.8",
"typechain": "0.3.14",
"typescript": "3.7.2",
"web3": "1.2.5",
"ethereumjs-util": "6.2.0"
}
}