forked from ggrossetie/unxhr
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
56 lines (56 loc) · 1.21 KB
/
package.json
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
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
{
"name": "unxhr",
"description": "Synchronous and asynchronous XMLHttpRequest for Node",
"version": "1.2.0",
"files": [
"lib"
],
"scripts": {
"test": "mocha tests/test-*.js && ts-node node_modules/mocha/lib/cli/cli.js tests/test-request.js",
"lint": "standard tests/**.js lib/**.js example/**.js",
"lint-fix": "npm run lint -- --fix"
},
"authors": [
"Dan DeFelippi (http://driverdan.com)",
"Guillaume Grossetie (https://github.com/mogztter)",
"David Jencks (https://gitlab.com/djencks)"
],
"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.3.4",
"dirty-chai": "2.0.1",
"get-port": "5.1.1",
"mocha": "9.1.3",
"standard": "16.0.4",
"ts-node": "^10.0.0",
"typescript": "^4.1.3"
},
"standard": {
"env": [
"mocha"
]
}
}