forked from AlexChien/MultiSigWallet
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
41 lines (41 loc) · 1.06 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
{
"name": "multisig-wallet-gnosis",
"version": "1.2.4",
"description": "Main module, for installing all dependencies",
"scripts": {
"test-dapp": "cd dapp && npm test",
"test": "sh truffle_test_runner.sh",
"install": "cd dapp && npm install",
"start": "cd dapp && npm start"
},
"repository": {
"type": "git",
"url": "git+https://github.com/gnosis/MultiSigWallet.git"
},
"author": "Gnosis (https://gnosis.pm/)",
"license": "ISC",
"bugs": {
"url": "https://github.com/gnosis/MultiSigWallet/issues"
},
"homepage": "https://github.com/gnosis/MultiSigWallet#readme",
"eslintConfig": {
"env": {
"browser": true,
"node": false
}
},
"dependencies": {
"child_process": "^1.0.2",
"ethereumjs-testrpc": "^4.0.1",
"run-with-testrpc": "^0.2.1",
"truffle": "^3.4.9"
},
"devDependencies": {
"babel-eslint": "^7.2.3",
"eslint": "^4.6.1",
"eslint-config-airbnb": "^15.1.0",
"eslint-plugin-import": "^2.7.0",
"eslint-plugin-jsx-a11y": "^5.1.1",
"eslint-plugin-react": "^7.3.0"
}
}