-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
34 lines (34 loc) · 954 Bytes
/
package.json
File metadata and controls
34 lines (34 loc) · 954 Bytes
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
{
"name": "rootproject-backend",
"version": "0.0.1",
"description": "Ethereum contracts for rootproject, a crowdfunding platform for social projects powered by a crypto currency.",
"main": "truffle.js",
"directories": {
"test": "test"
},
"scripts": {
"test": "truffle test",
"lint": "./node_modules/.bin/eslint **/*.js && solium --dir ."
},
"repository": {
"type": "git",
"url": "git+https://github.com/rootprojectco/backend.git"
},
"author": "Alex Bazhanau <bazhanau@outlook.com>",
"license": "GPL-3.0",
"bugs": {
"url": "https://github.com/rootprojectco/backend/issues"
},
"homepage": "https://github.com/rootprojectco/backend#readme",
"dependencies": {
"ethereumjs-testrpc": "~4.0.1",
"zeppelin-solidity": "~1.2.0"
},
"devDependencies": {
"bignumber.js": "~4.0.2",
"chai": "~4.1.0",
"chai-as-promised": "~7.1.1",
"eslint": "~4.0.0-rc.0",
"solium": "~0.5.5"
}
}