-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
42 lines (42 loc) · 1.19 KB
/
package.json
File metadata and controls
42 lines (42 loc) · 1.19 KB
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": "savjeecoin",
"version": "1.0.1",
"description": "Simple Blockchain implementation in Javascript. For educational purposes only.",
"keywords": [
"blockchain",
"transactions",
"education"
],
"main": "src/blockchain.js",
"scripts": {
"test": "nyc mocha tests/*.js",
"lint": "eslint src/** tests/**",
"coverage": "npm run test && nyc report --reporter=text-lcov | coveralls"
},
"author": "Xavier Decuyper <hi@savjee.be>",
"license": "MIT",
"repository": "github:SavjeeTutorials/SavjeeCoin",
"bugs": {
"url": "https://github.com/SavjeeTutorials/SavjeeCoin/issues"
},
"homepage": "https://github.com/SavjeeTutorials/SavjeeCoin",
"dependencies": {
"bloom-filters": "^1.3.1",
"crypto-js": "^4.0.0",
"debug": "^4.1.1",
"elliptic": "^6.5.1",
"fully-connected-topology": "^1.1.1",
"merkletreejs": "^0.2.12"
},
"devDependencies": {
"coveralls": "^3.0.6",
"eslint": "^6.5.1",
"eslint-config-standard": "^14.1.0",
"eslint-plugin-import": "^2.18.2",
"eslint-plugin-node": "^10.0.0",
"eslint-plugin-promise": "^4.2.1",
"eslint-plugin-standard": "^4.0.1",
"mocha": "^6.2.1",
"nyc": "^14.1.1"
}
}