-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
67 lines (67 loc) · 1.74 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
{
"name": "ecclesia-voter",
"description": "Voter CLI for E-cclesia voting protocol",
"version": "0.0.0",
"author": "Jonathan Levi @drummerjolev",
"bin": {
"ecclesia-voter": "./bin/run"
},
"bugs": "https://github.com/drummerjolev/ecclesia/issues",
"dependencies": {
"@oclif/command": "^1",
"@oclif/config": "^1",
"@oclif/plugin-help": "^2",
"await-exec": "^0.1.2",
"babel-cli": "^6.26.0",
"bn": "^1.0.2",
"ipfs": "^0.34.4",
"python-shell": "^1.0.7",
"truffle-contract": "^4.0.4",
"web3": "^1.0.0-beta.43"
},
"devDependencies": {
"@oclif/dev-cli": "^1",
"babel-plugin-transform-class-properties": "^6.24.1",
"babel-polyfill": "^6.26.0",
"babel-preset-env": "^1.7.0",
"babel-register": "^6.26.0",
"eslint": "^5.13.0",
"eslint-config-airbnb-base": "^13.1.0",
"eslint-config-oclif": "^3.1",
"eslint-plugin-import": "^2.16.0",
"globby": "^8"
},
"engines": {
"node": ">=8.0.0"
},
"files": [
"/bin",
"/npm-shrinkwrap.json",
"/oclif.manifest.json",
"/src"
],
"homepage": "https://github.com/drummerjolev/ecclesia",
"keywords": [
"oclif"
],
"license": "MIT",
"main": "src/index.js",
"oclif": {
"commands": "./src/commands",
"bin": "ecclesia-voter",
"plugins": [
"@oclif/plugin-help"
]
},
"repository": "drummerjolev/ecclesia",
"scripts": {
"prep-migrate": "babel ./utils --out-dir ./migrations/gen/utils",
"ecclesia": "babel-node --trace-warnings ./bin/run",
"lint": "eslint ./",
"postpack": "rm -f oclif.manifest.json",
"posttest": "eslint .",
"prepack": "oclif-dev manifest && oclif-dev readme",
"test": "echo NO TESTS",
"version": "oclif-dev readme && git add README.md"
}
}