Edit File: package.json
{ "$schema": "https://json.schemastore.org/package.json", "name": "opentok", "version": "2.18.1", "description": "OpenTok server-side SDK", "homepage": "https://github.com/opentok/opentok-node", "bugs": { "url": "https://github.com/opentok/opentok-node/issues", "email": "support@tokbox.com" }, "repository": { "type": "git", "url": "https://github.com/opentok/opentok-node.git" }, "license": "MIT", "contributors": [ { "name": "Hashir Baqai", "email": "hashirbaqai@gmail.com" }, { "name": "Brian Stoner", "email": "bsstoner@gmail.com", "url": "http://brianstoner.com" }, { "name": "Song Zheng", "email": "song@tokbox.com", "url": "http://songz.me" }, { "name": "Ankur Oberoi", "email": "aoberoi@gmail.com", "url": "http://aoberoi.me" }, { "name": "Jeff Swartz", "email": "swartz@tokbox.com" }, { "name": "Hamza Nasir", "email": "mnasir@hawk.iit.edu" }, { "name": "Manik Sachdeva", "url": "http://maniksach.dev" }, { "name": "Michael Jolley", "url": "https://baldbeardedbuilder.com" }, { "name": "Alex Lakatos", "url": "twitter.com/lakatos88" }, { "name": "Mofi Rahman", "url": "https://twitter.com/moficodes" }, { "name": "Chuck \"MANCHUCK\" Reeves", "email": "chuck@manchuck.com", "url": "https://github.com/manchuck" } ], "main": "lib/opentok.js", "files": [ "lib/" ], "scripts": { "jasmine-coverage": "cross-env NODE_ENV=test nyc --reporter=text-lcov jasmine-node spec > jasmine.lcov", "jasmine_node": "jasmine spec/opentok_spec.js", "lint": "./node_modules/.bin/eslint ./lib/ ./test/ ./sample/", "lint-fix": "eslint --fix lib test", "mocha-coverage": "cross-env NODE_ENV=test nyc --reporter=text-lcov mocha > mocha.lcov", "report-coverage": "npm run mocha-coverage && npm run jasmine-coverage", "test": "npm run test-no-lint && npm run jasmine_node", "test-coverage": "cross-env NODE_ENV=test nyc mocha", "test-coverage-html": "cross-env NODE_ENV=test nyc --reporter html mocha", "test-no-lint": "mocha ./test/*-test.js" }, "dependencies": { "jsonwebtoken": "9.0.2", "lodash": "4.17.21", "node-fetch": "2.7.0", "opentok-token": "1.1.1" }, "devDependencies": { "chai": "4.3.10", "cross-env": "7.0.3", "eslint": "8.51.0", "eslint-config-airbnb-base": "15.0.0", "eslint-plugin-import": "2.28.1", "jasmine": "5.1.0", "jasmine-node": "1.16.0", "mocha": "10.2.0", "nock": "13.3.6", "nyc": "15.1.0" }, "engines": { "node": ">=4" } }
Back to File Manager