This repository was archived by the owner on Feb 8, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
64 lines (64 loc) · 1.7 KB
/
package.json
File metadata and controls
64 lines (64 loc) · 1.7 KB
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
{
"name": "signhash-multisig",
"version": "0.1.0",
"description": "SignHash Multisignature Wallet",
"main": "index.js",
"scripts": {
"compile": "run-s compile:ts compile:sol",
"compile:sol": "truffle compile",
"compile:ts": "tsc",
"test": "run-s compile:ts test:js",
"test:js": "truffle test",
"migrate:ganache": "truffle migrate --reset --network ganache",
"lint": "run-p -c --aggregate-output lint:solhint lint:tslint",
"lint:tslint": "tslint --project .",
"lint:tslint:fix": "tslint --fix --project .",
"lint:solhint": "solhint contracts/*.sol",
"format": "prettier --write \"**/*.ts\"",
"precommit": "lint-staged",
"prepublishOnly": "run-s compile"
},
"lint-staged": {
"*.ts": [
"format",
"git add"
]
},
"repository": {
"type": "git",
"url": "git+https://github.com/SignHash/signhash-multisig.git"
},
"author": {
"name": "Jakub Stefanski",
"url": "https://jakubstefanski.com"
},
"contributors": [
{
"name": "Marcin Biernat",
"url": "https://marcinbiernat.pl"
}
],
"license": "MIT",
"bugs": {
"url": "https://github.com/SignHash/signhash-multisig/issues"
},
"homepage": "https://github.com/SignHash/signhash-multisig#readme",
"devDependencies": {
"@digix/tempo": "^0.2.0",
"@types/chai": "^4.0.4",
"@types/mocha": "^2.2.44",
"@types/node": "^8.0.51",
"@types/ramda": "^0.24.14",
"bignumber.js": "^4.1.0",
"chai": "^4.1.2",
"husky": "^0.14.3",
"lint-staged": "^4.3.0",
"npm-run-all": "^4.1.2",
"prettier": "^1.7.0",
"ramda": "^0.25.0",
"solhint": "^1.1.10",
"truffle": "^4.0.6",
"tslint": "^5.7.0",
"typescript": "^2.5.2"
}
}