forked from uwecerron/Decentral
-
Notifications
You must be signed in to change notification settings - Fork 6
/
package.json
45 lines (45 loc) · 1.04 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
{
"name": "DecentralBank",
"version": "0.0.2",
"description": "A Decentralized Bitcoin Bank",
"main": "./src/index.js",
"scripts": {
"test": "./node_modules/karma/bin/karma start karma.config.js --single-run"
},
"repository": {
"type": "git",
"url": "https://github.com/DecentralBank/Decentral.git"
},
"keywords": [
"bank",
"bitcoin",
"colored",
"coins",
"open",
"transactions"
],
"author": "Decentral Team",
"license": "MIT",
"bugs": {
"url": "https://github.com/DecentralBank/Decentral/issues"
},
"homepage": "https://github.com/DecentralBank/Decentral",
"devDependencies": {
"chai": "^1.9.1",
"coveralls": "^2.11.1",
"grunt": "^0.4.5",
"grunt-contrib-watch": "^0.6.1",
"grunt-karma": "^0.8.3",
"grunt-mocha-test": "^0.11.0",
"istanbul": "^0.3.0",
"karma": "^0.12.16",
"karma-chrome-launcher": "^0.1.4",
"karma-cli": "0.0.4",
"karma-jasmine": "^0.1.5",
"mocha": "^1.20.1"
},
"dependencies": {
"peerjs": "^0.3.8",
"sjcl": "^1.0.1"
}
}