-
Notifications
You must be signed in to change notification settings - Fork 8
/
package.json
38 lines (38 loc) · 913 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
{
"name": "better-fetch",
"version": "1.1.2",
"description": "A tiny ES6 fetch() wrapper that makes your life easier.",
"main": "lib/index.js",
"scripts": {
"build": "babel src -d lib",
"preversion": "",
"version": "npm run build && git add -A lib",
"postversion": "git push && git push --tags && rm -rf build/temp",
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Swizec/better-fetch.git"
},
"keywords": [
"es6",
"json",
"api",
"fetch"
],
"author": "Swizec Teller",
"license": "MIT",
"bugs": {
"url": "https://github.com/Swizec/better-fetch/issues"
},
"homepage": "https://github.com/Swizec/better-fetch#readme",
"devDependencies": {
"babel-cli": "^6.18.0",
"babel-preset-latest": "^6.16.0"
},
"babel": {
"presets": [
"latest"
]
}
}