-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
52 lines (52 loc) · 1.08 KB
/
package.json
File metadata and controls
52 lines (52 loc) · 1.08 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
46
47
48
49
50
51
52
{
"name": "request-fluture",
"version": "1.1.2",
"description": "Simple HTTP requests with Fluture and request.",
"keywords": [
"xhr",
"http",
"https",
"promise",
"request",
"fluture",
"functional",
"monad",
"fantasy-land"
],
"main": "./src/index.js",
"license": "MIT",
"scripts": {
"test": "jest",
"test:watch": "jest --watch",
"prepublish": "npm run test",
"precommit": "lint-staged"
},
"repository": "bfncs/request-fluture",
"author": "Marc Löhe (https://github.com/bfncs)",
"bugs": {
"url": "https://github.com/bfncs/request-fluture/issues"
},
"homepage": "https://github.com/bfncs/request-fluture",
"engines": {
"node": ">= 6"
},
"devDependencies": {
"fluture": "^10.3.1",
"husky": "^1.3.1",
"jest": "^24.1.0",
"lint-staged": "^8.1.5",
"prettier": "^1.6.1",
"request": "^2.88.0"
},
"peerDependencies": {
"fluture": ">= 7.1.2 < 11",
"request": "^2.81.0"
},
"lint-staged": {
"src/**/*.js": [
"prettier --write",
"git add"
]
},
"dependencies": {}
}