-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
80 lines (80 loc) · 2.33 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
{
"name": "@ethereum-alarm-clock/lib",
"version": "0.3.5",
"description": "TypeScript library for interacting with the Ethereum Alarm Clock contracts",
"main": "built/index.js",
"scripts": {
"build": "tsc",
"deploy-contracts": "node scripts/deployContracts.js",
"ganache": "ganache-cli -m \"shove afford modify census bridge good random error fault floor fringe oblige\" -i 1002",
"lint": "tslint --project .",
"prepack": "npm run build",
"typechain": "typechain --target=web3-1.0.0 \"src/abi/*.json\"",
"test": "npm run test:e2e && npm run test:unit",
"test:e2e": "mocha --timeout 50000 -r ts-node/register tests/e2e/*.ts --exit",
"test:unit": "mocha --timeout 50000 -r ts-node/register tests/unit/*.ts --exit"
},
"bin": {
"eac-deploy-contracts": "./scripts/deployContracts.js"
},
"author": "Kuzirashi",
"contributors": [
{
"name": "Bagaric"
},
{
"name": "kosecki123"
}
],
"license": "MIT",
"devDependencies": {
"@types/chai": "4.1.7",
"@types/ethereumjs-util": "5.2.0",
"@types/node-fetch": "2.1.6",
"@types/underscore": "1.8.9",
"@types/web3": "1.0.18",
"chai": "4.2.0",
"ethereum-types": "1.1.4",
"ganache-cli": "6.3.0",
"husky": "1.3.1",
"lint-staged": "8.1.3",
"mocha": "5.2.0",
"mocha-typescript": "1.1.17",
"prettier": "1.16.4",
"ts-node": "7.0.1",
"tslint": "5.12.1",
"tslint-config-prettier": "1.18.0",
"tslint-microsoft-contrib": "6.0.0",
"tslint-sonarts": "1.9.0",
"typechain": "0.3.11",
"typescript": "3.3.3"
},
"dependencies": {
"@ethereum-alarm-clock/contracts": "github:ethereum-alarm-clock/ethereum-alarm-clock#e1b4db61ec43154117be5582bc92dc881dc27ea5",
"bignumber.js": "8.0.2",
"ethereumjs-util": "6.0.0",
"moment": "2.24.0",
"node-fetch": "2.3.0",
"web3": "1.0.0-beta.37"
},
"lint-staged": {
"*.{ts,tsx}": [
"tslint --fix",
"prettier --write --config ./.prettierrc --config-precedence file-override",
"git add"
]
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"repository": {
"type": "git",
"url": "git+https://github.com/ethereum-alarm-clock/lib.git"
},
"keywords": [
"ethereum",
"smart-contracts"
]
}