-
Notifications
You must be signed in to change notification settings - Fork 50
/
package.json
92 lines (92 loc) · 3.14 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
{
"name": "@dharmaprotocol/contracts",
"version": "0.1.24",
"main": "dist/artifacts/index.js",
"typings": "dist/types/artifacts/index.d.ts",
"files": [
"build",
"dist",
"artifacts",
"contracts",
"migrations",
"scripts",
"token_registry_data",
"tsconfig.dist.json",
"truffle.js"
],
"description": "New & improved smart contracts for Dharma protocol",
"scripts": {
"deploy:development": "bash scripts/deploy_development.sh",
"deploy:kovan": "bash scripts/deploy_kovan.sh",
"deploy:mainnet": "bash scripts/deploy_mainnet.sh",
"dist": "bash scripts/prepare_dist.sh",
"generate-typings": "abi-gen --abis './build/contracts/*.json' --out './types/generated' --template './types/contract_templates/contract.mustache' --partials './types/contract_templates/partials/*.mustache'",
"transpile": "rm -rf ./transpiled; copyfiles ./build/**/* ./transpiled; tsc",
"lint-ts": "tslint migrations/*.ts test/**/*.ts",
"lint-sol": "solhint contracts/*.sol contracts/libraries/*.sol contracts/examples/*.sol contracts/test/**/.sol",
"lint": "npm run lint-ts; npm run lint-sol",
"compile": "truffle compile --all",
"migrate": "truffle migrate --reset",
"prettify": "prettier --write test/ts/**/*.ts types/**/*.ts types/*.ts artifacts/*.ts",
"prepublishOnly": "npm run dist",
"test": "npm run compile; npm run generate-typings; npm run transpile; npm run migrate; truffle test",
"chain": "ganache-cli --networkId 70 --accounts 20",
"validate": "npm ls"
},
"repository": "[email protected]:dharmaprotocol/charta.git",
"author": "Nadav Hollander <[email protected]>",
"license": "ISC",
"pre-commit": [
"prettify",
"lint"
],
"dependencies": {
"aws-sdk": "^2.334.0",
"zeppelin-solidity": "1.8.0"
},
"devDependencies": {
"@0xproject/abi-gen": "0.2.3",
"@0xproject/types": "^0.1.1",
"@0xproject/utils": "^0.1.0",
"@types/bignumber.js": "^4.0.3",
"@types/chai": "^4.1.2",
"@types/chai-as-promised": "^7.1.0",
"@types/fs-extra": "^5.0.0",
"@types/json-stable-stringify": "^1.0.32",
"@types/lodash": "^4.14.86",
"@types/mocha": "^2.2.47",
"@types/node": "^8.5.1",
"abi-decoder": "^1.0.9",
"bignumber.js": "^4.1.0",
"chai": "^4.1.2",
"chai-as-promised": "^7.1.1",
"chai-bignumber": "^2.0.2",
"child-process-promise": "^2.2.1",
"copyfiles": "^1.2.0",
"ethereumjs-abi": "^0.6.4",
"ethereumjs-util": "^5.1.2",
"ethjs-abi": "^0.2.1",
"fs-extra": "^5.0.0",
"ganache-cli": "^6.1.0",
"import-sort-cli": "^4.2.0",
"import-sort-parser-babylon": "^4.2.0",
"import-sort-style-eslint": "^4.2.0",
"json-stable-stringify": "^1.0.1",
"left-pad": "^1.2.0",
"lodash": "^4.17.4",
"moment": "^2.20.1",
"pre-commit": "^1.2.2",
"prettier": "^1.10.2",
"solhint": "^1.1.8",
"solidity-sha3": "^0.4.1",
"tiny-promisify": "^1.0.0",
"truffle": "4.0.4",
"tslint": "^5.8.0",
"tslint-no-unused-expression-chai": "0.0.3",
"types-bn": "^0.0.1",
"types-ethereumjs-util": "^0.0.5",
"typescript": "^2.6.1",
"web3": "0.19.0",
"web3-typescript-typings": "^0.7.2"
}
}