This repository has been archived by the owner on Aug 1, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathpackage.json
53 lines (53 loc) · 1.42 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
{
"name": "wretch-middlewares",
"version": "0.1.13",
"description": "Middlewares for the wretch library",
"main": "./dist/umd/wretch-middlewares.min.js",
"module": "./dist/index.js",
"jsnext:main": "./dist/index.js",
"types": "./dist/index.d.ts",
"scripts": {
"start": "npm run build",
"prebuild": "npm run lint",
"build": "rimraf dist && rimraf docs/lib && tsc -p . && rollup -c && rollup -c -o docs/lib/index.js",
"fix": "tslint --fix -p tsconfig.json -t codeFrame",
"lint": "tslint -p tsconfig.json -t codeFrame",
"watch": "rollup -c -w -o docs/lib/index.js",
"serve": "http-server -c-1 docs",
"dev": "concurrently \"npm run watch\" \"npm run serve\""
},
"files": [
"dist"
],
"keywords": [
"wretch",
"fetch",
"ajax",
"request",
"middleware",
"middlewares"
],
"homepage": "https://elbywan.github.io/wretch",
"repository": {
"type": "git",
"url": "https://github.com/elbywan/wretch-middlewares"
},
"bugs": {
"url": "https://github.com/elbywan/wretch-middlewares/issues"
},
"author": "Julien Elbaz",
"license": "MIT",
"devDependencies": {
"concurrently": "^6.2.1",
"http-server": "^13.0.2",
"rimraf": "^3.0.2",
"rollup": "^2.56.3",
"rollup-plugin-terser": "^7.0.2",
"rollup-plugin-typescript": "^1.0.1",
"tslint": "^6.1.3",
"typescript": "^4.4.3"
},
"peerDependencies": {
"wretch": "^1.7.6"
}
}