-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
42 lines (42 loc) · 1.08 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
{
"name": "supafetch",
"version": "0.3.2",
"description": "Fetch Wrapper inspired by axios",
"main": "lib/index.js",
"repository": "https://github.com/jemmyphan/supafetch.git",
"scripts": {
"build:node": "babel --out-dir lib src",
"build:web": "webpack --output-filename supafetch.js",
"build:web.min": "webpack --output-filename supafetch.min.js -p",
"build": "npm-run-all --parallel build:*",
"prepublish": "npm run build",
"prebuild": "rm -rf lib dist"
},
"keywords": [
"fetch",
"axios",
"network",
"http-client",
"http",
"xhr"
],
"types": "./supafetch.d.ts",
"author": "Jemmy Phan <jemmyphan94@gmail.com>",
"license": "MIT",
"devDependencies": {
"babel-cli": "^6.24.1",
"babel-core": "^6.25.0",
"babel-eslint": "^7.2.3",
"babel-loader": "^7.1.1",
"babel-preset-es2015": "^6.24.1",
"babel-preset-stage-2": "^6.24.1",
"eslint": "^4.2.0",
"eslint-plugin-babel": "^4.1.1",
"npm-run-all": "^4.0.2",
"path": "^0.12.7",
"webpack": "^3.3.0"
},
"dependencies": {
"qs": "^6.5.0"
}
}