mirror of
https://github.com/Permissionless-Software-Foundation/x402-base-facilitator.git
synced 2026-09-21 16:52:01 -07:00
fix(dependencies): auditing dependencies.
This commit is contained in:
+10
@@ -15,3 +15,13 @@ services:
|
||||
before_install:
|
||||
- ./install-mongo
|
||||
#- npm install -g mocha
|
||||
|
||||
# Send coverage data to Coveralls
|
||||
after_success:
|
||||
- npm run coverage
|
||||
|
||||
deploy:
|
||||
provider: script
|
||||
skip_cleanup: true
|
||||
script:
|
||||
- npx semantic-release
|
||||
|
||||
+16
-7
@@ -5,9 +5,11 @@
|
||||
"main": "index.js",
|
||||
"scripts": {
|
||||
"start": "node index.js",
|
||||
"test": "NODE_ENV=test ./node_modules/.bin/mocha",
|
||||
"test": "NODE_ENV=test nyc --reporter=text ./node_modules/.bin/mocha --exit",
|
||||
"lint": "eslint src/**/*.js",
|
||||
"docs": "./node_modules/.bin/apidoc -i src/ -o docs"
|
||||
"docs": "./node_modules/.bin/apidoc -i src/ -o docs",
|
||||
"coverage": "nyc report --reporter=text-lcov | coveralls",
|
||||
"coverage:report": "nyc --reporter=html mocha --exit"
|
||||
},
|
||||
"keywords": [
|
||||
"koa2-api-boilerplate",
|
||||
@@ -26,10 +28,7 @@
|
||||
"title": "babel-free-koa2-api-boilerplate",
|
||||
"url": "localhost:5000"
|
||||
},
|
||||
"repository": {
|
||||
"type": "git",
|
||||
"url": "https://github.com/christroutner/babel-free-koa2-api-boilerplate"
|
||||
},
|
||||
"repository": "christroutner/babel-free-koa2-api-boilerplate",
|
||||
"dependencies": {
|
||||
"apidoc": "^0.16.1",
|
||||
"bcryptjs": "^2.4.3",
|
||||
@@ -56,6 +55,16 @@
|
||||
"eslint-config-standard": "^6.0.0",
|
||||
"eslint-plugin-promise": "^2.0.1",
|
||||
"eslint-plugin-standard": "^2.0.0",
|
||||
"mocha": "^3.0.2"
|
||||
"mocha": "^3.0.2",
|
||||
"nyc": "^13.1.0",
|
||||
"semantic-release": "^15.10.8"
|
||||
},
|
||||
"release": {
|
||||
"publish": [
|
||||
{
|
||||
"path": "@semantic-release/npm",
|
||||
"npmPublish": false
|
||||
}
|
||||
]
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user