forked from kksharma1618/lambda-restify
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
60 lines (60 loc) · 1.58 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
50
51
52
53
54
55
56
57
58
59
60
{
"name": "restify-lambda",
"version": "2.0.11",
"description": "A somewhat in-place Restify implementation for AWS Lambda. Forked from lambda-restify",
"main": "build/index",
"types": "build/index",
"engines": {
"node": ">=6.10.0"
},
"scripts": {
"prepublish": "npm run build",
"build": "tsc || echo 'Build failed'",
"test": "mocha -r ts-node/register src/**/*.spec.ts",
"testwatch": "mocha -r ts-node/register -w --watch-extensions ts src/**/*.spec.ts",
"lint": "tslint src/**/*.ts"
},
"repository": {
"type": "git",
"url": "git+https://github.com/mewtlu/lambda-restify.git"
},
"keywords": [
"aws",
"lambda",
"aws lambda",
"restify",
"serverless"
],
"author": "Luke Roberts <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/mewtlu/lambda-restify/issues"
},
"homepage": "https://github.com/mewtlu/lambda-restify#readme",
"devDependencies": {
"@types/assert-plus": "^1.0.3",
"@types/chai": "^3.5.2",
"@types/mime": "^1.3.1",
"@types/mocha": "^2.2.41",
"@types/once": "^1.3.28",
"@types/restify-errors": "^4.3.1",
"@types/semver": "^5.3.32",
"@types/uuid": "^3.0.0",
"chai": "^3.5.0",
"chai-shallow-deep-equal": "^1.4.6",
"mocha": "^3.3.0",
"nodemon": "^1.11.0",
"npm-run-series": "^1.0.0",
"ts-node": "^3.0.4",
"typescript": "^2.3.2"
},
"dependencies": {
"assert-plus": "^1.0.0",
"mime": "^1.3.6",
"negotiator": "^0.6.1",
"once": "^1.4.0",
"restify-errors": "^4.3.0",
"semver": "^5.3.0",
"uuid": "^3.1.0"
}
}