-
Notifications
You must be signed in to change notification settings - Fork 14
/
Copy pathpackage.json
70 lines (70 loc) · 1.64 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
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": "rosetta-node-sdk",
"version": "1.4.1",
"description": "A Standard for Blockchain Interaction",
"main": "index.js",
"scripts": {
"prestart": "npm install",
"start": "node index.js",
"run-example": "node examples/serverSkeleton",
"eslint": "eslint .",
"test": "mocha --exit test",
"test:coverage": "nyc npm run test",
"jsdoc": "jsdoc -c ./conf.json -r lib/ -d ./jsdoc"
},
"keywords": [
"openapi-generator",
"openapi"
],
"license": "MIT",
"private": false,
"dependencies": {
"@babel/cli": "^7.0.0",
"body-parser": "^1.19.0",
"camelcase": "^5.3.1",
"cookie-parser": "^1.4.4",
"cors": "^2.8.5",
"exponential-backoff": "^3.0.1",
"express": "^4.16.4",
"express-openapi-validator": "^3.16.1",
"js-yaml": "^3.3.0",
"nyc": "^15.1.0",
"ono": "^5.0.1",
"openapi-sampler": "^1.0.0-beta.15",
"rosetta-node-sdk-client": "git+https://github.com/DigiByte-Core/rosetta-node-sdk-client.git#v1.4.1",
"superagent": "3.7.0",
"swagger-ui-express": "^4.0.2",
"winston": "^3.2.1"
},
"devDependencies": {
"axios": "^0.19.0",
"chai": "^4.2.0",
"eslint": "^5.16.0",
"eslint-config-airbnb-base": "^14.0.0",
"eslint-plugin-import": "^2.17.2",
"mocha": "^7.1.1",
"babel-eslint": "^10.1.0"
},
"eslintConfig": {
"env": {
"node": true
}
},
"nyc": {
"check-coverage": true,
"all": true,
"include": [
"lib/**/!(*.test.*).js?(x)"
],
"exclude": [
"lib/server/**/*.*"
],
"reporter": [
"html",
"lcov",
"text",
"text-summary"
],
"report-dir": "coverage"
}
}