-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
37 lines (37 loc) · 829 Bytes
/
package.json
File metadata and controls
37 lines (37 loc) · 829 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
30
31
32
33
34
35
36
37
{
"name": "@bgoodman/http-client",
"description": "An async HTTP Client implementing Window.XMLHttpRequest.",
"version": "1.3.4",
"license": "MIT",
"main": "dist/src/index.js",
"module": "dist/src/index.js",
"typings": "dist/src/index.d.ts",
"files": [
"dist"
],
"scripts": {
"build": "rimraf ./dist && tsc",
"test": "./node_modules/.bin/jest"
},
"devDependencies": {
"rimraf": "^3.0.0",
"typescript": "^3.6.4",
"@types/jest": "^24.0.21",
"@types/node": "^12.12.5",
"jest": "^24.9.0",
"ts-jest": "^24.1.0"
},
"author": {
"name": "Benjamin Goodman",
"email": "b@thebgoodman.com"
},
"repository": {
"type": "git",
"url": "https://github.com/b-goodman/http-client.git"
},
"keywords": [
"http",
"http-client",
"XMLHttpRequest"
]
}