-
-
Notifications
You must be signed in to change notification settings - Fork 12
/
package.json
65 lines (65 loc) · 1.7 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
57
58
59
60
61
62
63
64
65
{
"author": "Yamagishi Kazutoshi",
"browser": "./dist/browser.umd.js",
"dependencies": {},
"description": "Server-side XMLHttpRequest.",
"devDependencies": {
"@commitlint/cli": "^17.4.3",
"@commitlint/config-conventional": "^17.4.3",
"@types/jest": "^27.0.1",
"@types/node": "^16.18.12",
"@typescript-eslint/eslint-plugin": "~5.52.0",
"@typescript-eslint/parser": "~5.52.0",
"conventional-github-releaser": "^3.1.5",
"eslint": "^8.34.0",
"eslint-config-prettier": "~8.6.0",
"eslint-plugin-prettier": "~4.2.1",
"get-port": "^5.1.1",
"husky": "^6.0.0",
"is-ci": "^3.0.0",
"jest": "^27.0.0",
"lint-staged": "^13.1.2",
"microbundle": "^0.15.1",
"prettier": "~2.8.4",
"ts-jest": "^27.0.1",
"typescript": "~4.9.5"
},
"engines": {
"node": ">= 16.13.0"
},
"exports": {
"import": "./dist/index.modern.js",
"require": "./dist/index.js"
},
"files": [
"dist",
"types"
],
"homepage": "https://github.com/ykzts/node-xmlhttprequest",
"keywords": [
"xmlhttprequest",
"xhr",
"w3c",
"whatwg"
],
"license": "MIT",
"main": "./dist/index.js",
"module": "./dist/index.module.js",
"name": "w3c-xmlhttprequest",
"repository": {
"type": "git",
"url": "https://github.com/ykzts/node-xmlhttprequest.git"
},
"scripts": {
"build": "microbundle --no-generate-types --strict --target node src/index.ts src/browser.ts",
"format": "prettier --write .",
"format-check": "prettier --check .",
"lint": "eslint .",
"prepare": "is-ci || husky install",
"test": "jest"
},
"source": "./src/index.ts",
"types": "./types/index.d.ts",
"unpkg": "./dist/index.umd.js",
"version": "3.0.4"
}