-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
61 lines (61 loc) · 1.96 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
{
"name": "@synapsestudios/fetch-client",
"version": "2.0.2",
"description": "A wrapper for fetch to make things more easier",
"main": "lib/index.js",
"directories": {
"test": "test"
},
"scripts": {
"test": "npm run clean && BABEL_ENV=testing mocha --recursive ./test --require @babel/register",
"test:shippable": "BABEL_ENV=testing mocha --recursive ./test --require @babel/register -R xunit > shippable/testresults/result.xml",
"test:watch": "npm run test -- --watch",
"clean": "rm -rf lib",
"build": "npm run clean && babel src --out-dir lib",
"build:watch": "npm run build -- --watch",
"lint": "eslint src",
"prepublishOnly": "npm run lint && npm test && npm run build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/synapsestudios/fetch-client.git"
},
"author": "Synapse Studios",
"license": "MIT",
"bugs": {
"url": "https://github.com/synapsestudios/fetch-client/issues"
},
"homepage": "https://github.com/synapsestudios/fetch-client#readme",
"devDependencies": {
"@babel/cli": "~7.2.3",
"@babel/core": "~7.4.0",
"@babel/plugin-proposal-object-rest-spread": "~7.4.0",
"@babel/plugin-transform-runtime": "~7.4.0",
"@babel/preset-env": "~7.4.1",
"@babel/register": "~7.4.0",
"babel-eslint": "~10.0.1",
"babel-plugin-rewire": "~1.2.0",
"chai": "~3.5.0",
"chai-as-promised": "~5.3.0",
"eslint": "~5.3.0",
"eslint-config-airbnb": "~17.1.0",
"eslint-plugin-import": "~2.16.0",
"eslint-plugin-jsx-a11y": "~6.2.1",
"eslint-plugin-react": "~7.12.4",
"estraverse-fb": "~1.3.1",
"file-api": "~0.10.4",
"form-data": "~1.0.0-rc4",
"lodash.clonedeep": "~4.3.2",
"mocha": "~6.0.2",
"sinon": "~1.17.3",
"sinon-chai": "~2.8.0",
"urlsearchparams": "~0.1.1",
"whatwg-fetch": "2.0.4"
},
"dependencies": {
"@babel/runtime": "7.4.0",
"eventemitter2": "1.0.5",
"merge": "1.2.1",
"querystring": "0.2.0"
}
}