This repository was archived by the owner on Dec 6, 2023. It is now read-only.
forked from WhiteflagProtocol/whiteflag-api
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
70 lines (70 loc) · 2.22 KB
/
Copy pathpackage.json
File metadata and controls
70 lines (70 loc) · 2.22 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
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
{
"name": "whiteflag-api",
"version": "1.0.0-beta.1",
"description": "Implementation of the Whiteflag protocol API layer that provides an interface with the Whiteflag messaging network on one or more underlying blockchains",
"keywords": [
"whiteflag",
"protocol",
"blockchain",
"api"
],
"license": "CC0-1.0",
"dependencies": {
"body-parser": "^1.19.0",
"cors": "^2.8.5",
"ethereumjs-tx": "^2.1.2",
"ethereumjs-util": "^7.0.4",
"express": "^4.17.1",
"express-basic-auth": "^1.2.0",
"jsonschema": "^1.2.6",
"jsonwebtoken": "^8.5.1",
"keccak": "3.0.1",
"key-encoder": "^2.0.3",
"mongodb": "^3.6.0",
"socket.io": "^2.3.0",
"toml": "^3.0.0",
"web3": "^1.2.11"
},
"devDependencies": {
"eslint": "^7.1.0",
"semver": "^7.3.2",
"mocha": "^7.2.0",
"jsdoc": "~3.6.4",
"widdershins": "^4.0.1",
"cloc": "^2.5.1",
"license-checker": "^25.0.1"
},
"homepage": "https://github.com/WhiteflagProtocol/whiteflag-api#readme",
"repository": {
"type": "git",
"url": "https://github.com/WhiteflagProtocol/whiteflag-api.git"
},
"bugs": {
"url": "https://github.com/WhiteflagProtocol/whiteflag-api/issues"
},
"directories": {
"lib": "./lib",
"test": "./test",
"doc": "./doc",
"man": "./docs/man"
},
"main": "main.js",
"bin": {
"whiteflag-api": "./main.js",
"wfapi": "./main.js"
},
"scripts": {
"start": "node main.js",
"test": "mocha --recursive",
"doc:src": "rm -rf docs/jsdoc/* && jsdoc -c .jsdoc.json",
"doc:openapi": "widdershins --shallowSchemas -c static/openapi.json -o docs/md/openapi.md",
"build:doc": "npm run doc:openapi && npm run doc:src",
"build": "npm run build:doc",
"count": "cloc --exclude-dir=node_modules,.vscode --exclude-list-file=.clocignore --by-file lib",
"count-all": "cloc --exclude-dir=node_modules,.vscode --exclude-list-file=.clocignore .",
"licenses": "license-checker --summary"
},
"engines": {
"node": ">= 10.x.x"
}
}