-
Notifications
You must be signed in to change notification settings - Fork 20
/
Copy pathpackage.json
75 lines (75 loc) · 2.56 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
{
"name": "hifetch",
"version": "3.0.7",
"description": "A minimal higher-level wrapper around Fetch API",
"author": "dexteryy <dexter.yy@gmail.com>",
"contributors": [],
"bugs": {
"url": "https://github.com/dexteryy/Project-WebCube/issues"
},
"homepage": "https://github.com/dexteryy/Project-WebCube/tree/master/packages/hifetch",
"repository": "https://github.com/dexteryy/Project-WebCube/tree/master/packages/hifetch",
"license": "MIT",
"webcube:module": "src/index.js",
"module": "build/es6/index.js",
"main": "build/dist/index.js",
"sideEffects": false,
"files": [
"build/**/*"
],
"scripts": {
"prepare": "npm run build",
"precommit:custom": "npm run test",
"test": "npm run build 1>/dev/null && npm run test:nobuild",
"test:nobuild": "mocha build/tests/**/*.spec.js --reporter nyan",
"build": "npm run clear && npm run build:dist && npm run build:es6 && npm run build:test",
"build:test": "BABEL_ENV=dist babel tests --out-dir build/tests",
"build:dist": "BABEL_ENV=dist babel src --out-dir build/dist",
"build:es6": "babel src --out-dir build/es6",
"clear": "rm -r build 2>/dev/null || true"
},
"engines": {
"node": ">=6"
},
"dependencies": {
"isomorphic-fetch": "^2.2.1",
"qs": "^6.5.2"
},
"devDependencies": {
"@babel/cli": "^7.1.0",
"@babel/core": "^7.1.0",
"@babel/plugin-proposal-class-properties": "^7.1.0",
"@babel/plugin-proposal-decorators": "^7.1.2",
"@babel/plugin-proposal-export-default-from": "^7.0.0",
"@babel/plugin-proposal-export-namespace-from": "^7.0.0",
"@babel/plugin-proposal-function-bind": "^7.0.0",
"@babel/plugin-proposal-numeric-separator": "^7.0.0",
"@babel/plugin-proposal-object-rest-spread": "^7.0.0",
"@babel/plugin-proposal-optional-catch-binding": "^7.0.0",
"@babel/plugin-proposal-optional-chaining": "^7.0.0",
"@babel/plugin-proposal-pipeline-operator": "^7.0.0",
"@babel/plugin-syntax-dynamic-import": "^7.0.0",
"@babel/polyfill": "^7.0.0",
"@babel/preset-env": "^7.1.0",
"@babel/preset-react": "^7.0.0",
"@babel/preset-typescript": "^7.1.0",
"babel-plugin-add-module-exports": "^1.0.0",
"babel-plugin-graphql-tag": "^1.6.0",
"babel-plugin-lodash": "^3.3.4",
"babel-plugin-ramda": "^2.0.0",
"babel-plugin-styled-components": "^1.8.0",
"chai": "^4.1.2",
"chance": "^1.0.16",
"fast-async": "^7.0.0",
"form-data": "^2.3.2",
"mocha": "^5.2.0",
"nock": "^10.0.0"
},
"keywords": [
"fetch",
"ajax",
"promise",
"error-handling",
"isomorphic"
]
}