forked from ykzts/node-xmlhttprequest
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
29 lines (29 loc) · 719 Bytes
/
package.json
File metadata and controls
29 lines (29 loc) · 719 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
{
"author": "Stuart Espey",
"name": "w3c-xmlhttprequest-plus",
"description": "Server-side XMLHttpRequest. Plus.",
"version": "2.2.0",
"license": "MIT",
"homepage": "https://github.com/mrstux/node-xmlhttprequest",
"repository": {
"type": "git",
"url": "git://github.com/mrstux/node-xmlhttprequest.git"
},
"main": "./lib/index.js",
"scripts": {
"lint": "npm install && eslint lib/**/*.js test/**/*.js",
"test": "npm install && mocha test/**/*.js"
},
"browser": {
"./lib/index.js": "./lib/browser.js"
},
"dependencies": {},
"devDependencies": {
"eslint": "^1.10.3",
"mocha": "^2.3.4"
},
"optionalDependencies": {},
"engines": {
"node": ">= 4.0.0"
}
}