48 lines
973 B
JSON
48 lines
973 B
JSON
{
|
|
"name": "unxhr",
|
|
"description": "Synchronous and asynchronous XMLHttpRequest for Node",
|
|
"version": "1.0.1",
|
|
"files": [
|
|
"lib"
|
|
],
|
|
"scripts": {
|
|
"test": "mocha tests/test-*.js",
|
|
"lint": "standard tests/**.js lib/**.js example/**.js"
|
|
},
|
|
"authors": [
|
|
"Dan DeFelippi (http://driverdan.com)",
|
|
"Guillaume Grossetie (https://github.com/mogztter)"
|
|
],
|
|
"keywords": [
|
|
"xhr",
|
|
"ajax",
|
|
"sync",
|
|
"http"
|
|
],
|
|
"license": "MIT",
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "git://github.com/mogztter/unxhr.git"
|
|
},
|
|
"browser": {
|
|
"fs": false,
|
|
"child_process": false
|
|
},
|
|
"bugs": "http://github.com/mogztter/unxhr/issues",
|
|
"engines": {
|
|
"node": ">=8.11"
|
|
},
|
|
"directories": {
|
|
"lib": "./lib",
|
|
"example": "./example"
|
|
},
|
|
"main": "./lib/XMLHttpRequest.js",
|
|
"devDependencies": {
|
|
"chai": "4.2.0",
|
|
"dirty-chai": "2.0.1",
|
|
"get-port": "4.0.0",
|
|
"mocha": "5.2.0",
|
|
"standard": "12.0.1"
|
|
}
|
|
}
|