-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
41 lines (41 loc) · 942 Bytes
/
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": "spartan-gold",
"version": "1.0.7",
"description": "A simplified blockchain-based cryptocurrency for experimentation",
"main": "index.js",
"scripts": {
"lint": "eslint **/*.js",
"test": "mocha"
},
"repository": {
"type": "git",
"url": "git+https://github.com/taustin/spartan-gold.git"
},
"keywords": [
"blockchain",
"cryptocurrency"
],
"author": "Tom Austin",
"license": "MIT",
"bugs": {
"url": "https://github.com/taustin/spartan-gold/issues"
},
"homepage": "https://github.com/taustin/spartan-gold#readme",
"dependencies": {
"chai": "^4.2.0",
"child_process": "^1.0.2",
"csv-parser": "^3.0.0",
"mocha": "^10.2.0",
"papaparse": "^5.4.1",
"readline-sync": "^1.4.10",
"seedrandom": "^3.0.5"
},
"devDependencies": {
"eslint": "^6.8.0",
"minimist": "^1.2.5",
"mkdirp": "^1.0.4"
},
"resolutions": {
"mkdirp": "^1.0.4"
}
}