-
Notifications
You must be signed in to change notification settings - Fork 750
/
Copy pathpackage.json
41 lines (41 loc) · 1.17 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
{
"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": "npm run lint:eslint && npm run lint:prettier",
"lint:eslint": "eslint src/** tests/**",
"lint:prettier": "prettier src/**/*.js",
"coverage": "nyc --reporter=lcov npm run test"
},
"author": "Xavier Decuyper <[email protected]>",
"license": "MIT",
"repository": "github:SavjeeTutorials/SavjeeCoin",
"bugs": {
"url": "https://github.com/SavjeeTutorials/SavjeeCoin/issues"
},
"homepage": "https://github.com/SavjeeTutorials/SavjeeCoin",
"dependencies": {
"debug": "^4.1.1",
"elliptic": "^6.5.4"
},
"devDependencies": {
"coveralls": "^3.0.6",
"eslint": "^8.8.0",
"eslint-config-standard": "^17.0.0-0",
"eslint-plugin-import": "^2.18.2",
"eslint-plugin-node": "^11.0.0",
"eslint-plugin-promise": "^6.0.0",
"eslint-plugin-standard": "^5.0.0",
"mocha": "^10.0.0",
"nyc": "^15.1.0",
"prettier": "^2.7.1"
}
}