-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpackage.json
More file actions
42 lines (42 loc) · 1.08 KB
/
Copy pathpackage.json
File metadata and controls
42 lines (42 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
{
"name": "aws-api-client",
"version": "1.0.5",
"description": "A JavaScript module to consume AWS API Gateway endpoints. This is the same code generated by AWS, but packaged to be used as ES6 modules compatible with bundlers like Webpack.",
"main": "lib/index.js",
"scripts": {
"test": "mocha test",
"prepublish": "./node_modules/.bin/babel apigateway --out-dir lib"
},
"repository": {
"type": "git",
"url": "git+https://github.com/pfernandom/aws-api-client.git"
},
"keywords": [
"aws",
"aws-api-gateway",
"aws-sdk"
],
"author": "Pedro Marquez",
"license": "Apache",
"bugs": {
"url": "https://github.com/pfernandom/aws-api-client/issues"
},
"homepage": "https://github.com/pfernandom/aws-api-client#readme",
"dependencies": {
"axios": "^0.18.1",
"url-parse": "^1.4.3"
},
"devDependencies": {
"babel-cli": "^6.24.1",
"babel-core": "^6.26.3",
"babel-preset-es2015": "^6.24.1",
"crypto-js": "^3.1.9-1",
"mocha": "^5.2.0",
"should": "^11.2.1"
},
"babel": {
"presets": [
"es2015"
]
}
}