UNPKG

2.37 kBJSONView Raw
1{
2 "name": "@bitblit/epsilon",
3 "version": "0.4.2",
4 "description": "Tiny adapter to simplify building API gateway Lambda APIS",
5 "main": "./dist/index",
6 "typings": "./dist/index",
7 "files": [
8 "dist"
9 ],
10 "contributors": [
11 "Christopher Weiss <bitblit@gmail.com>"
12 ],
13 "husky": {
14 "hooks": {
15 "pre-commit": "pretty-quick --staged"
16 }
17 },
18 "prettier": {
19 "printWidth": 140,
20 "singleQuote": true,
21 "arrowParens": "always"
22 },
23 "config": {},
24 "scripts": {
25 "prepublishOnly": "yarn run compile",
26 "compile": "yarn run clean && tsc && yarn run copy-static-files",
27 "watch": "tsc -w .",
28 "clean": "rm -Rf dist",
29 "test": "mocha -r ts-node/register test/**/*.ts",
30 "copy-static-files": "cd src && cp -R static ../dist",
31 "apply-circle": "node node_modules/@bitblit/ratchet/dist/circleci/apply-circle-ci-env-variables-to-files src/static/build-properties.json",
32 "run-sample-server": "yarn compile && node dist/sample-local-server.js"
33 },
34 "repository": {
35 "type": "git",
36 "url": "https://github.com/bitblit/Epsilon"
37 },
38 "keywords": [
39 "epsilon",
40 "lambda",
41 "api gateway"
42 ],
43 "bugs": {
44 "url": "https://github.com/bitblit/Epsilon/issues"
45 },
46 "homepage": "https://github.com/bitblit/Epsilon#readme",
47 "engines": {
48 "node": ">=12.8"
49 },
50 "license": "Apache-2.0",
51 "dependencies": {
52 "@bitblit/ratchet": "0.8.4",
53 "@bitblit/saltmine": "0.4.3",
54 "js-yaml": "3.14.0",
55 "jsonwebtoken": "8.5.1",
56 "jwks-rsa": "1.8.1",
57 "moment": "2.27.0",
58 "moment-timezone": "0.5.31",
59 "portable-fetch": "3.0.0",
60 "route-parser": "0.0.5",
61 "strip-js": "1.2.0",
62 "swagger-model-validator": "3.0.19"
63 },
64 "resolutions": {
65 "lodash": "4.17.15",
66 "minimist": "1.2.3"
67 },
68 "peerDependencies": {
69 "@types/aws-lambda": "8.10.58",
70 "aws-sdk": "2.712.0"
71 },
72 "devDependencies": {
73 "@types/aws-lambda": "8.10.58",
74 "@types/chai": "4.2.9",
75 "@types/js-yaml": "3.12.5",
76 "@types/mocha": "7.0.1",
77 "@types/node": "12.12.6",
78 "apollo-server-lambda": "2.15.1",
79 "aws-sdk": "2.712.0",
80 "chai": "4.2.0",
81 "eslint": "7.4.0",
82 "graphql": "14.6.0",
83 "husky": "3.0.5",
84 "mocha": "7.0.1",
85 "prettier": "1.18.2",
86 "pretty-quick": "1.11.1",
87 "ts-loader": "8.0.0",
88 "ts-node": "8.6.2",
89 "typescript": "3.7.5"
90 }
91}