-
Notifications
You must be signed in to change notification settings - Fork 56
/
Copy pathpackage.json
49 lines (49 loc) · 1.19 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": "aws-api-gateway-client",
"version": "0.3.7",
"description": "A module for AWS API Gateway client",
"repository": {
"type": "git",
"url": "git+https://github.com/kndt84/aws-api-gateway-client.git"
},
"keywords": [
"aws",
"apigateway"
],
"author": "kndt84",
"license": "MIT",
"bugs": {
"url": "https://github.com/kndt84/aws-api-gateway-client/issues"
},
"homepage": "https://github.com/kndt84/aws-api-gateway-client#readme",
"main": "dist/apigClient.js",
"scripts": {
"build": "babel src -d dist",
"prepare": "npm run lint && npm run build",
"lint": "node node_modules/eslint/bin/eslint.js src",
"test": "nyc ava"
},
"ava": {
"require": [
"@babel/register"
]
},
"dependencies": {
"@babel/runtime": "^7.12.5",
"axios": "^0.21.1",
"axios-retry": "^3.1.9",
"crypto-js": "^4.0.0",
"url": "^0.11.0",
"url-template": "^2.0.8"
},
"devDependencies": {
"@babel/cli": "^7.14.5",
"@babel/core": "^7.14.6",
"@babel/plugin-transform-runtime": "^7.14.5",
"@babel/preset-env": "^7.14.7",
"@babel/register": "^7.14.5",
"ava": "^3.15.0",
"eslint": "^7.29.0",
"nyc": "^15.1.0"
}
}