forked from monetha/claims-js-sdk
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
48 lines (48 loc) · 1.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
{
"name": "claims-sdk",
"version": "2.0.0",
"description": "An SDK for solving disputes in a decentralized way using Ethereum blockchain",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"license": "GPL-3.0",
"engines": {
"npm": ">=5",
"node": ">=8.9.0"
},
"scripts": {
"test": "cd integration-tests && npm run test",
"build": "node ./scripts/build-distribution.js",
"lint": "tslint --project tsconfig.json",
"prepare-contracts": "typechain --target=web3-1.0.0 --outDir=src/contracts"
},
"husky": {
"hooks": {
"pre-commit": "npm run build && git add dist"
}
},
"devDependencies": {
"@types/node": "^10.14.6",
"husky": "2.1.0",
"shelljs": "^0.8.3",
"tslib": "^1.9.3",
"tslint": "^5.16.0",
"tslint-config-airbnb": "^5.11.1",
"tslint-lines-between-class-members": "^1.3.1",
"typechain": "^0.3.14",
"typescript": "^3.4.5"
},
"dependencies": {
"abi-decoder": "^1.2.0",
"bignumber.js": "^8.1.1",
"tscpaths": "0.0.7",
"web3": "^1.0.0-beta.55"
},
"repository": {
"type": "git",
"url": "git+https://github.com/monetha/claims-js-sdk.git"
},
"author": "Monetha",
"_moduleAliases": {
"src": "dist"
}
}