Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

update dependencies, remove lockfile (this is a library) #4

Merged
merged 1 commit into from Mar 31, 2020
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
2 changes: 2 additions & 0 deletions .gitignore
@@ -1,3 +1,5 @@
yarn.lock

# Logs
logs
*.log
Expand Down
24 changes: 14 additions & 10 deletions package.json
Expand Up @@ -5,13 +5,6 @@
"main": "src/index.js",
"author": "Alex Puig",
"license": "MIT",
"scripts": {
"coverage": "nyc mocha test --timeout 20000 && nyc report --reporter=html",
"coveralls": "nyc mocha test --timeout 20000 && nyc report --reporter=text-lcov | coveralls",
"lint": "eslint ./src ./test",
"npm:publish": "npm publish --access public",
"test": "./node_modules/.bin/mocha --reporter spec"
},
"repository": {
"type": "git",
"url": "https://gitlab.com/caelum-tech/lorena/zenroom-lib.git"
Expand All @@ -27,6 +20,7 @@
},
"homepage": "https://github.com/caelum-tech/lorena/zenroom-lib.git#readme",
"dependencies": {
"@babel/core": "^7.0.0-0",
"js-base64": "^2.5.2",
"zenroom": "^1.0.5"
},
Expand All @@ -35,18 +29,28 @@
"chai-as-promised": "^7.1.1",
"coveralls": "^3.0.11",
"eslint": "^6.8.0",
"eslint-config-standard": "^14.1.0",
"eslint-config-standard": "^14.1.1",
"eslint-plugin-chai-friendly": "^0.5.0",
"eslint-plugin-import": "^2.20.1",
"eslint-plugin-import": "^2.20.2",
"eslint-plugin-jsdoc": "^22.1.0",
"eslint-plugin-node": "^11.0.0",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^4.2.1",
"eslint-plugin-standard": "^4.0.1",
"husky": "^4.2.3",
"mocha": "^7.1.1",
"mocha-lcov-reporter": "^1.3.0",
"nyc": "^15.0.0"
},
"scripts": {
"start": "node src/index.js",
"coverage": "nyc npm run mocha && nyc report --reporter=html",
"coveralls": "nyc npm run mocha && nyc report --reporter=text-lcov | coveralls",
"lint": "eslint ./src",
"lint-fix": "eslint ./src --fix",
"mocha": "mocha test --timeout 20000",
"npm:publish": "npm publish --access public",
"test": "npm run mocha"
},
"husky": {
"hooks": {
"pre-commit": "yarn lint"
Expand Down