-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
56 lines (56 loc) · 1.55 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
{
"name": "@sampullman/fetch-api",
"version": "0.8.1",
"description": "Small fetch wrapper for quickly prototyping API clients",
"type": "module",
"main": "dist/fetch-api.umd",
"module": "dist/fetch-api.js",
"types": "dist/lib/index.d.ts",
"files": [
"dist",
"lib"
],
"scripts": {
"build": "rimraf dist && rollup -c rollup.config.js",
"example:dev": "npm -C example run dev",
"example:build": "npm -C example run build",
"build:all": "npm run build && npm run plugin:build",
"build:test": "npm run build && jest",
"test": "jest",
"release": "npx git-ensure -a && npx bumpp --commit --tag --push"
},
"repository": {
"type": "git",
"url": "git+https://github.com/sampullman/fetch-api.git"
},
"keywords": [
"fetch",
"api"
],
"author": "Sam Pullman",
"license": "MIT",
"bugs": {
"url": "https://github.com/sampullman/fetch-api/issues"
},
"homepage": "https://github.com/sampullman/fetch-api#readme",
"devDependencies": {
"@rollup/plugin-commonjs": "^21.0.2",
"@rollup/plugin-node-resolve": "^13.1.3",
"@types/btoa": "^1.2.3",
"@types/jest": "^27.4.1",
"abort-controller": "^3.0.0",
"btoa": "^1.2.1",
"jest": "^27.5.1",
"node-fetch": "^3.2.2",
"rimraf": "^3.0.2",
"rollup": "^2.70.0",
"rollup-plugin-dts": "^4.2.0",
"rollup-plugin-sourcemaps": "^0.6.3",
"rollup-plugin-terser": "^7.0.2",
"rollup-plugin-typescript2": "^0.31.2",
"ts-jest": "^27.1.3",
"ts-node": "^10.7.0",
"tslib": "^2.3.1",
"typescript": "^4.5.2"
}
}