123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354 |
- {
- "name": "@videojs/xhr",
- "version": "2.6.0",
- "description": "small xhr abstraction",
- "keywords": [
- "xhr",
- "http",
- "xmlhttprequest",
- "xhr2",
- "browserify"
- ],
- "author": "Raynos <raynos2@gmail.com>",
- "repository": "git://github.com/videojs/xhr.git",
- "main": "./lib/index.js",
- "homepage": "https://github.com/videojs/xhr",
- "contributors": [
- {
- "name": "Jake Verbaten"
- },
- {
- "name": "Zbyszek Tenerowicz",
- "email": "naugtur@gmail.com"
- }
- ],
- "bugs": "https://github.com/videojs/xhr/issues",
- "typings": "./lib/index.d.ts",
- "dependencies": {
- "@babel/runtime": "^7.5.5",
- "is-function": "^1.0.1",
- "global": "~4.4.0"
- },
- "devDependencies": {
- "@babel/cli": "^7.14.8",
- "@babel/core": "^7.14.8",
- "@babel/preset-env": "^7.14.8",
- "@videojs/babel-config": "^0.1.0",
- "for-each": "^0.3.2",
- "pre-commit": "1.2.2",
- "run-browser": "naugtur/run-browser",
- "tap-spec": "^5.0.0",
- "tape": "^4.0.0"
- },
- "license": "MIT",
- "scripts": {
- "prepublishOnly": "npm run build",
- "start": "npm run build -- -w",
- "build": "babel-config-cjs src -d lib",
- "test:index": "run-browser test/index.js -b -m test/mock-server.js | tap-spec",
- "test:http-handler": "run-browser test/http-handler.js -b -m test/mock-server.js | tap-spec",
- "pretest": "npm run build",
- "test": "npm run test:index && npm run test:http-handler",
- "browser": "run-browser -m test/mock-server.js test/index.js"
- }
- }
|