-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathpackage.json
57 lines (57 loc) · 1.69 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
{
"name": "fetch-http-client",
"version": "1.1.0",
"description": "A http client wrapper for fetch api with middleware support.",
"main": "lib",
"files": [
"lib",
"umd"
],
"scripts": {
"lint": "eslint modules test",
"test": "mocha --compilers js:babel-core/register --reporter spec --bail test/",
"test-cov": "babel-node ./node_modules/.bin/babel-istanbul cover _mocha -- --reporter dot test/",
"test-travis": "babel-node ./node_modules/.bin/babel-istanbul cover _mocha --report lcovonly -- --reporter dot test/",
"build": "babel ./modules -d lib && webpack modules/index.js umd/fetch-http-client.js && webpack -p modules/index.js umd/fetch-http-client.min.js",
"clean": "rm -rf lib umd"
},
"pre-commit": [
"lint"
],
"repository": {
"type": "git",
"url": "git+https://github.com/starlight36/fetch-http-client.git"
},
"keywords": [
"fetch",
"http",
"request"
],
"bugs": {
"url": "https://github.com/starlight36/fetch-http-client/issues"
},
"homepage": "https://github.com/starlight36/fetch-http-client#readme",
"license": "MIT",
"dependencies": {
"query-string": "^4.1.0"
},
"devDependencies": {
"babel-cli": "~6.8.0",
"babel-core": "^6.8.0",
"babel-eslint": "~6.0.4",
"babel-istanbul": "^0.11.0",
"babel-loader": "^6.2.4",
"babel-preset-es2015": "~6.6.0",
"babel-preset-stage-0": "^6.5.0",
"eslint": "~2.9.0",
"eslint-config-airbnb": "~8.0.0",
"eslint-plugin-import": "~1.7.0",
"eslint-plugin-jsx-a11y": "~1.0.4",
"eslint-plugin-react": "~5.0.1",
"flow-bin": "^0.24.2",
"istanbul": "^0.4.4",
"mocha": "^3.0.2",
"pre-commit": "1.x",
"webpack": "~1.13.0"
}
}