-
Notifications
You must be signed in to change notification settings - Fork 16
/
Copy pathpackage.json
42 lines (42 loc) · 1.05 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
{
"name": "peervote",
"version": "0.0.1",
"description": "A blockchain for democratic governance.",
"scripts": {
"transpile-es2015": "babel src -d lib",
"start": "./src/node peervote.js"
},
"dependencies": {
"body-parser": "^1.15.2",
"commander": "^2.9.0",
"crypto-js": "^3.1.6",
"express": "~4.11.1",
"ws": "^1.1.0"
},
"bin": {
"peervote": "./src/peervote.js"
},
"engines": {
"node": ">=4.3.2"
},
"devDependencies": {
"babel-cli": "^6.24.1",
"babel-preset-latest": "^6.24.1",
"eslint": "^3.19.0",
"eslint-config-airbnb": "^14.1.0",
"eslint-plugin-import": "^2.2.0",
"eslint-plugin-jsx-a11y": "^4.0.0",
"eslint-plugin-react": "^6.10.3"
},
"main": "./src/peervote.js",
"repository": {
"type": "git",
"url": "git+https://github.com/DemocracyEarth/peervote.git"
},
"author": "Democracy Earth Foundation",
"license": "MIT",
"bugs": {
"url": "https://github.com/DemocracyEarth/peervote/issues"
},
"homepage": "https://github.com/DemocracyEarth/peervote#readme"
}