-
Notifications
You must be signed in to change notification settings - Fork 157
/
package.json
59 lines (59 loc) · 1.31 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
{
"name": "xhook",
"version": "0.0.0-git-tag",
"description": "Easily intercept and modify XHR request and response",
"main": "lib/main.js",
"module": "es/main.js",
"scripts": {
"start": "rollup -c -w",
"build": "rollup -c",
"test": "npm run build && playwright test",
"test:only": "playwright test",
"test:server": "http-server --port 8080",
"prepare": "husky install"
},
"repository": {
"type": "git",
"url": "https://github.com/jpillora/xhook"
},
"keywords": [
"xhr",
"ajax",
"intercept",
"modify",
"hook"
],
"author": {
"name": "Jaime Pillora",
"email": "[email protected]"
},
"contributors": [
{
"name": "Maayan Glikser",
"email": "[email protected]"
},
{
"name": "Daniel Gasienica",
"email": "[email protected]"
},
{
"name": "TrickyPi",
"email": "[email protected]"
}
],
"license": "MIT",
"devDependencies": {
"@playwright/test": "^1.24.2",
"@rollup/plugin-typescript": "^9.0.2",
"http-server": "^14.1.1",
"husky": "^8.0.1",
"prettier": "2.7.1",
"rollup": "^2.77.2",
"rollup-plugin-terser": "^7.0.2",
"tslib": "^2.4.1",
"typescript": "^4.8.4"
},
"lint-staged": {
"**/*": "prettier --write --ignore-unknown"
}
}