1{ 2 "name": "unxhr", 3 "description": "Synchronous and asynchronous XMLHttpRequest for Node", 4 "version": "1.2.0", 5 "files": [ 6 "lib" 7 ], 8 "scripts": { 9 "test": "mocha tests/test-*.js && ts-node node_modules/mocha/lib/cli/cli.js tests/test-request.js", 10 "lint": "standard tests/**.js lib/**.js example/**.js", 11 "lint-fix": "npm run lint -- --fix" 12 }, 13 "authors": [ 14 "Dan DeFelippi (http://driverdan.com)", 15 "Guillaume Grossetie (https://github.com/mogztter)", 16 "David Jencks (https://gitlab.com/djencks)" 17 ], 18 "keywords": [ 19 "xhr", 20 "ajax", 21 "sync", 22 "http" 23 ], 24 "license": "MIT", 25 "repository": { 26 "type": "git", 27 "url": "git://github.com/mogztter/unxhr.git" 28 }, 29 "browser": { 30 "fs": false, 31 "child_process": false 32 }, 33 "bugs": "http://github.com/mogztter/unxhr/issues", 34 "engines": { 35 "node": ">=8.11" 36 }, 37 "directories": { 38 "lib": "./lib", 39 "example": "./example" 40 }, 41 "main": "./lib/XMLHttpRequest.js", 42 "devDependencies": { 43 "chai": "4.3.0", 44 "dirty-chai": "2.0.1", 45 "get-port": "5.1.1", 46 "mocha": "8.2.1", 47 "standard": "16.0.3", 48 "ts-node": "^9.1.1", 49 "typescript": "^4.1.3" 50 }, 51 "standard": { 52 "env": [ 53 "mocha" 54 ] 55 } 56} 57