-
Notifications
You must be signed in to change notification settings - Fork 49
/
Copy pathpackage.json
49 lines (49 loc) · 1.1 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
{
"name": "sync-request",
"version": "6.1.0",
"description": "Make synchronous web requests",
"main": "lib/index.js",
"browser": "lib/browser.js",
"types": "lib/index.d.ts",
"keywords": [
"request",
"http",
"https",
"cache",
"browserify",
"synchronous",
"sync"
],
"dependencies": {
"http-response-object": "^3.0.1",
"sync-rpc": "^1.2.1",
"then-request": "^6.0.0"
},
"devDependencies": {
"body-parser": "^1.14.1",
"cross-env": "^5.1.3",
"express": "^4.13.3",
"flowgen2": "^2.2.0",
"jest": "^22.1.4",
"morgan": "^1.6.1",
"rimraf": "^2.6.2",
"typescript": "^2.6.2"
},
"scripts": {
"pretest": "npm run build",
"test": "jest && cross-env SYNC_REQUEST_LEGACY=true jest && node test/benchmark",
"jest": "jest",
"prepublishOnly": "npm run build",
"prebuild": "rimraf lib",
"build": "tsc && flowgen lib/**/*"
},
"repository": {
"type": "git",
"url": "https://github.com/ForbesLindesay/sync-request.git"
},
"author": "ForbesLindesay",
"license": "MIT",
"engines": {
"node": ">=8.0.0"
}
}