-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
executable file
·36 lines (36 loc) · 1.03 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
{
"name": "SavjeeCoin",
"version": "1.0.0",
"description": "Simple Blockchain implementation in Javascript. For educational purposes only.",
"main": "src/main.js",
"scripts": {
"test": "mocha tests/*.test.js",
"lint": "eslint src/**",
"coverage": "nyc npm test && nyc report --reporter=text-lcov | coveralls"
},
"author": "Xavier Decuyper <[email protected]>",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/SavjeeTutorials/SavjeeCoin.git"
},
"bugs": {
"url": "https://github.com/SavjeeTutorials/SavjeeCoin/issues"
},
"homepage": "https://github.com/SavjeeTutorials/SavjeeCoin",
"dependencies": {
"crypto-js": "^3.1.9-1",
"elliptic": "^6.4.1"
},
"devDependencies": {
"coveralls": "^3.0.2",
"eslint": "^5.7.0",
"eslint-config-standard": "^12.0.0",
"eslint-plugin-import": "^2.14.0",
"eslint-plugin-node": "^7.0.1",
"eslint-plugin-promise": "^4.0.1",
"eslint-plugin-standard": "^4.0.0",
"mocha": "^5.2.0",
"nyc": "^13.1.0"
}
}