-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
40 lines (40 loc) · 981 Bytes
/
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
{
"name": "margaret-fetcher",
"description": "Request classes for fetch",
"main": "dist/index.js",
"jsnext:main": "src/index.js",
"typings": "./index.d.ts",
"version": "0.11.1",
"repository": {
"type": "git",
"url": "git+ssh://[email protected]:madewithlove/margaret-fetcher.git"
},
"keywords": [
"fetch"
],
"author": {
"name": "Madewithlove",
"email": "[email protected]"
},
"license": "MIT",
"dependencies": {
"fetch-everywhere": "^1.0.5",
"lodash": "^4.15.0",
"url": "^0.11.0"
},
"devDependencies": {
"eslint": "^4.3.0",
"eslint-config-madewithlove": "^5.1.1",
"fetch-mock": "^4.6.1",
"jest": "^20.0.4",
"madewithlove-webpack-config": "^6.2.3",
"webpack": "^3.4.1"
},
"scripts": {
"build": "BABEL_ENV=production webpack --progress",
"prepublish": "npm run build",
"postversion": "git push; git push --tags; npm publish",
"lint": "eslint src",
"test": "jest"
}
}