-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
35 lines (35 loc) · 859 Bytes
/
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
{
"name": "xhr-shim",
"version": "0.1.3",
"description": "Polyfill XMLHttpRequest.",
"main": "src/index.js",
"scripts": {
"test:lint": "eslint ./src/*.js",
"test:tap": "npx tap --no-coverage ./test/test.*.mjs",
"test": "npm run test:lint & npm run test:tap"
},
"repository": {
"type": "git",
"url": "git+https://github.com/apple502j/xhr-shim.git"
},
"keywords": [
"xhr",
"polyfill",
"fetch"
],
"author": "apple502j",
"license": "MIT",
"bugs": {
"url": "https://github.com/apple502j/xhr-shim/issues"
},
"homepage": "https://github.com/apple502j/xhr-shim#readme",
"devDependencies": {
"abort-controller": "^3.0.0",
"domexception": "^4.0.0",
"eslint": "^8.23.1",
"event-target-shim": "^6.0.2",
"fetch-blob": "^3.2.0",
"node-fetch": "^3.2.10",
"tap": "^16.3.0"
}
}