-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
45 lines (45 loc) · 1.1 KB
/
package.json
File metadata and controls
45 lines (45 loc) · 1.1 KB
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
{
"name": "gofor",
"version": "3.0.6",
"description": "Lean, isomorphic fetch decorator that reverse merges default options",
"keywords": [
"fetch",
"node-fetch",
"isomorphic",
"browser",
"xhr",
"ajax",
"http",
"request",
"promise"
],
"author": "Fiverr",
"license": "MIT",
"homepage": "https://github.com/fiverr/gofor#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/fiverr/gofor.git"
},
"engines": {
"node": ">=8.9.0"
},
"main": "./src/server.js",
"browser": "./src/browser.js",
"scripts": {
"test": "mocha --opts configuration/mocha.opts './{,!(node_modules)/**}/test.js' './{,!(node_modules)/**}/*.test.js'",
"test:single": "mocha --opts configuration/mocha.opts ",
"lint": "eslint src lib",
"prepublishOnly": "npm t && npm run lint"
},
"dependencies": {
"@cocopina/environment": "^1.0.4",
"node-fetch": "^2.6.0"
},
"devDependencies": {
"@fiverr/eslint-config-fiverr": "^3.1.3",
"chai": "^4.2.0",
"eslint": "^6.5.1",
"eslint-plugin-react": "^7.15.1",
"mocha": "^6.2.1"
}
}