-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
81 lines (81 loc) · 2.59 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
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
{
"name": "easyfetch",
"version": "0.0.6",
"description": "Simple wrapper around fetch with json support",
"main": "lib/index.js",
"jsnext:main": "es/index.js",
"scripts": {
"lint": "eslint src",
"check": "npm run lint",
"compile": "rimraf lib && cross-env BABEL_ENV=cjs babel -d lib/ src/",
"build:umd:dev": "cross-env BABEL_ENV=cjs webpack --config webpack.config.dev.js",
"build:umd:prod": "cross-env BABEL_ENV=cjs webpack --config webpack.config.prod.js",
"build:es": "cross-env BABEL_ENV=es babel src --out-dir es",
"build": "rimraf dist es && npm run build:umd:dev && npm run build:umd:prod && npm run build:es",
"prepublish": "npm run check && npm run compile && npm run build",
"counter": "cross-env BABEL_ENV=cjs node examples/counter/server.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/PhilipGarnero/easyfetch.git"
},
"keywords": [
"javascript",
"fetch",
"request",
"wrapper",
"json"
],
"author": "Philip GARNERO <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/PhilipGarnero/easyfetch/issues"
},
"homepage": "https://github.com/PhilipGarnero/easyfetch#readme",
"devDependencies": {
"@babel/cli": "^7.24.5",
"@babel/core": "^7.24.5",
"@babel/eslint-parser": "^7.24.5",
"@babel/plugin-proposal-class-properties": "^7.18.6",
"@babel/plugin-proposal-decorators": "^7.24.1",
"@babel/plugin-proposal-export-namespace-from": "^7.18.9",
"@babel/plugin-proposal-function-sent": "^7.24.1",
"@babel/plugin-proposal-json-strings": "^7.18.6",
"@babel/plugin-proposal-numeric-separator": "^7.18.6",
"@babel/plugin-proposal-throw-expressions": "^7.24.1",
"@babel/plugin-syntax-dynamic-import": "^7.8.3",
"@babel/plugin-syntax-import-meta": "^7.10.4",
"@babel/preset-env": "^7.24.5",
"@babel/preset-react": "^7.24.1",
"@babel/preset-stage-2": "^7.8.3",
"babel-loader": "^9.1.3",
"babel-polyfill": "^6.26.0",
"cross-env": "^7.0.3",
"eslint": "^9.2.0",
"express": "^4.13.3",
"gitbook-cli": "2.3.2",
"isomorphic-fetch": "^3.0.0",
"lolex": "^6.0.0",
"rimraf": "^5.0.7",
"tap-spec": "^5.0.0",
"tape": "^5.7.5",
"terser-webpack-plugin": "^5.3.10",
"typescript": "^5.4.5",
"webpack": "^5.91.0",
"webpack-cli": "^5.1.4",
"webpack-dev-middleware": "^7.2.1",
"webpack-hot-middleware": "^2.6.0"
},
"npmName": "easyfetch",
"npmFileMap": [
{
"basePath": "/dist/",
"files": [
"*.js"
]
}
],
"dependencies": {
"easyfetch": "^0.0.6"
}
}