-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
42 lines (42 loc) · 1.23 KB
/
Copy pathpackage.json
File metadata and controls
42 lines (42 loc) · 1.23 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
{
"name": "async-json-request",
"version": "4.1.0",
"description": "Base request methods based on promises for async/await ussage",
"main": "./dist/index.js",
"scripts": {
"build": "tsc",
"prepublish": "npm run build",
"test": "mocha --require ts-node/register test/index.ts",
"coverage": "istanbul cover -e .ts _mocha -- --compilers ts:ts-node/register"
},
"repository": {
"type": "git",
"url": "git+https://github.com/bouchal/node-async-json-request.git"
},
"author": "Antonin Bouchal <me@justme.cz>",
"license": "ISC",
"bugs": {
"url": "https://github.com/bouchal/node-async-json-request/issues"
},
"homepage": "https://github.com/bouchal/node-async-json-request#readme",
"dependencies": {
"@types/caseless": "^0.12.1",
"@types/methods": "^1.1.0",
"@types/request": "^2.48.1",
"deepmerge": "^2.1.1",
"methods": "^1.1.2",
"request": "^2.88.0"
},
"devDependencies": {
"@types/body-parser": "^1.17.0",
"@types/express": "^4.16.0",
"@types/mocha": "^5.2.5",
"@types/node": "^10.12.18",
"body-parser": "^1.18.3",
"express": "^4.16.3",
"istanbul": "^1.0.0-alpha.2",
"mocha": "^5.2.0",
"ts-node": "^7.0.1",
"typescript": "^3.2.4"
}
}