forked from arawako/turtlecoin-nodes-json
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
37 lines (37 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
{
"name": "turtlecoin-nodes-json",
"version": "0.0.2",
"description": "json list of public daemons",
"main": "turtlecoin-nodes.json",
"directories": {
"test": "tests"
},
"scripts": {
"test": "npm run checkDupes && npm run checkAlpha && npm run checkOrder",
"checkDupes": "node tests/checkForDuplicates.js",
"checkAlpha": "node tests/checkAlphaNumeric.js",
"checkOrder": "node tests/checkAlphabetical.js",
"checkNodes": "./node_modules/.bin/mocha tests/checkNodes.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/turtlecoin/turtlecoin-nodes-json.git"
},
"keywords": [
"turtlecoin",
"public",
"nodes"
],
"author": "The TurtleCoin Developers",
"license": "AGPL-3.0",
"bugs": {
"url": "https://github.com/turtlecoin/turtlecoin-nodes-json/issues"
},
"homepage": "https://github.com/turtlecoin/turtlecoin-nodes-json#readme",
"devDependencies": {
"colors": "^1.4.0",
"mocha": "^8.1.1",
"request": "^2.88.2",
"request-promise-native": "^1.0.9"
}
}