Skip to content

Commit

Permalink
deps update
Browse files Browse the repository at this point in the history
  • Loading branch information
vitaly-t committed Dec 24, 2020
1 parent defba96 commit aef55cb
Show file tree
Hide file tree
Showing 2 changed files with 15 additions and 13 deletions.
4 changes: 3 additions & 1 deletion .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,8 @@ matrix:
- node_js: "10"
script: "npm test"
- node_js: "12"
script: "npm run travis"
script: "npm test"
- node_js: "14"
script: "npm run travis"
- node_js: "15"
script: "npm test"
24 changes: 12 additions & 12 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "sub-events",
"version": "1.8.6",
"version": "1.8.7",
"description": "Lightweight, strongly-typed events, with monitored subscriptions.",
"main": "dist/src/index.js",
"types": "dist/src/index.d.ts",
Expand All @@ -9,8 +9,8 @@
"all": "npm run compile && npm run lint && npm test && npm run build",
"build": "browserify dist/src/index.js -s subEvents -o dist/index.js && node extras/deploy.js",
"compile": "tsc -p src && tsc -p extras/src && tsc extras/deploy.ts && tsc -p test",
"doc": "./node_modules/.bin/typedoc",
"lint": "./node_modules/.bin/tslint --fix ./src/**/*.ts ./extras/src/*.ts ./test/**/*.ts",
"doc": "typedoc",
"lint": "tslint --fix ./src/**/*.ts ./extras/src/*.ts ./test/**/*.ts",
"test": "nyc mocha -r ts-node/register test/**/*.spec.ts",
"travis": "nyc npm test && nyc report --reporter=text-lcov | coveralls"
},
Expand Down Expand Up @@ -42,20 +42,20 @@
"typescript"
],
"devDependencies": {
"@types/chai": "4.2.12",
"@types/chai-spies": "1.0.1",
"@types/mocha": "8.0.3",
"@types/node": "14.6.0",
"browserify": "16.5.2",
"@types/chai": "4.2.14",
"@types/chai-spies": "1.0.3",
"@types/mocha": "8.2.0",
"@types/node": "14.14.16",
"browserify": "17.0.0",
"chai": "4.2.0",
"chai-spies": "1.0.0",
"coveralls": "3.1.0",
"mocha": "8.1.1",
"mocha": "8.2.1",
"mocha-lcov-reporter": "1.3.0",
"nyc": "15.1.0",
"ts-node": "8.10.2",
"ts-node": "9.1.1",
"tslint": "6.1.3",
"typedoc": "0.18.0",
"typescript": "4.0.2"
"typedoc": "0.20.0-beta.27",
"typescript": "4.1.3"
}
}

0 comments on commit aef55cb

Please sign in to comment.