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
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
| {
| "_args": [
| [
| "unfetch@4.2.0",
| "/Users/tomas/PAM/PAMapp"
| ]
| ],
| "_from": "unfetch@4.2.0",
| "_id": "unfetch@4.2.0",
| "_inBundle": false,
| "_integrity": "sha512-F9p7yYCn6cIW9El1zi0HI6vqpeIvBsr3dSuRO6Xuppb1u5rXpCPmMvLSyECLhybr9isec8Ohl0hPekMVrEinDA==",
| "_location": "/unfetch",
| "_phantomChildren": {},
| "_requested": {
| "type": "version",
| "registry": true,
| "raw": "unfetch@4.2.0",
| "name": "unfetch",
| "escapedName": "unfetch",
| "rawSpec": "4.2.0",
| "saveSpec": null,
| "fetchSpec": "4.2.0"
| },
| "_requiredBy": [
| "/@nuxt/vue-app"
| ],
| "_resolved": "https://registry.npmjs.org/unfetch/-/unfetch-4.2.0.tgz",
| "_spec": "4.2.0",
| "_where": "/Users/tomas/PAM/PAMapp",
| "authors": [
| "Jason Miller <jason@developit.ca>"
| ],
| "babel": {
| "env": {
| "test": {
| "presets": [
| "env"
| ]
| }
| }
| },
| "bugs": {
| "url": "https://github.com/developit/unfetch/issues"
| },
| "description": "Bare minimum fetch polyfill in 500 bytes",
| "devDependencies": {
| "babel-preset-env": "^1.7.0",
| "cross-var": "^1.1.0",
| "eslint": "^3.13.1",
| "eslint-config-developit": "^1.1.1",
| "jest": "^23.6.0",
| "microbundle": "^0.10.1"
| },
| "eslintConfig": {
| "extends": "developit"
| },
| "files": [
| "src",
| "dist",
| "polyfill"
| ],
| "homepage": "https://github.com/developit/unfetch",
| "jest": {
| "testURL": "http://localhost/",
| "testMatch": [
| "<rootDir>/test/**/*.?(m)js?(x)"
| ],
| "moduleFileExtensions": [
| "mjs",
| "js"
| ],
| "transform": {
| "^.+\\.m?jsx?$": "babel-jest"
| }
| },
| "jsnext:main": "dist/unfetch.module.js",
| "keywords": [
| "fetch",
| "polyfill",
| "xhr",
| "ajax"
| ],
| "license": "MIT",
| "main": "dist/unfetch.js",
| "module": "dist/unfetch.module.js",
| "name": "unfetch",
| "repository": {
| "type": "git",
| "url": "git+https://github.com/developit/unfetch.git"
| },
| "scripts": {
| "build": "microbundle src/index.mjs && microbundle -f cjs polyfill/polyfill.mjs -o polyfill/index.js --no-sourcemap && cp dist/unfetch.module.js dist/unfetch.es.js",
| "prepare": "npm run -s build",
| "release": "cross-var npm run build -s && cross-var git commit -am $npm_package_version && cross-var git tag $npm_package_version && git push && git push --tags && npm publish",
| "test": "eslint src test && jest"
| },
| "types": "src/index.d.ts",
| "umd:main": "dist/unfetch.umd.js",
| "unpkg": "polyfill/index.js",
| "version": "4.2.0"
| }
|
|