-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
41 lines (41 loc) · 1.05 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
{
"name": "@swissquote/fetch-filter",
"version": "0.10.0",
"description": "A wrapper around Fetch that allows to manipulate the responses, or have side effects on them",
"author": "Stéphane Goetz <[email protected]>",
"licence": "Apache-2.0",
"keywords": [
"ajax",
"xhr",
"filter",
"fetch",
"middleware"
],
"repository": {
"type": "git",
"url": "https://github.com/swissquote/fetch-filter.git"
},
"bugs": {
"url": "https://github.com/swissquote/fetch-filter/issues"
},
"homepage": "https://github.com/swissquote/fetch-filter",
"main": "dist/fetch-filter.min.js",
"types": "dist/index.d.ts",
"scripts": {
"build": "rollup -c",
"test": "node test.js puppeteer"
},
"devDependencies": {
"body-parser": "^1.20.0",
"express": "^4.18.1",
"glob": "^8.0.3",
"puppeteer": "^16.1.1",
"resolve": "^1.22.1",
"rollup": "^0.41.6",
"rollup-plugin-typescript2": "^0.4.2",
"rollup-plugin-uglify": "^2.0.1",
"tmp": "^0.2.1",
"tslib": "^1.7.1",
"typescript": "^2.3.3"
}
}