-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
70 lines (70 loc) · 1.97 KB
/
package.json
File metadata and controls
70 lines (70 loc) · 1.97 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
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
{
"name": "lambda-framework",
"version": "1.2.0",
"description": "Framework to create web apps with any provider. This is the core, you can use it with an official provider implementation or you can implement your own provider.",
"main": "dist/src/index.js",
"types": "dist/src/index.d.ts",
"repository": {
"type": "git",
"url": "https://github.com/rogelio-o/lambda-framework.git"
},
"scripts": {
"clean": "rm -rf dist coverage",
"precompile": "npm run clean",
"pretest": "npm run compile",
"test": "nyc --reporter=html --reporter=text mocha --recursive dist/test/",
"posttest": "npm run lint && nyc check-coverage --statements 90 --branches 90 --functions 90 --lines 90",
"compile": "tsc",
"lint": "tslint --config tslint.json --project tsconfig.json",
"coveralls": "nyc report --reporter=text-lcov | coveralls",
"prepublish": "npm-auto-version"
},
"keywords": [
"serverless",
"framework",
"lambda"
],
"author": "Rogelio Orts",
"license": "MIT",
"devDependencies": {
"@types/chai": "^4.1.4",
"@types/mocha": "^2.2.48",
"@types/sinon": "^2.3.7",
"chai": "^4.1.2",
"coveralls": "^3.0.1",
"mocha": "^5.2.0",
"mock-fs": "^4.5.0",
"npm-auto-version": "^1.0.0",
"nyc": "^11.9.0",
"sinon": "^4.5.0",
"tslint": "^5.10.0",
"tslint-microsoft-contrib": "^5.0.3",
"typescript": "^2.9.2"
},
"dependencies": {
"@types/node": "^8.10.20",
"accepts": "^1.3.5",
"bytes": "^3.0.0",
"content-type": "^1.0.4",
"cookie": "^0.3.1",
"cookie-signature": "^1.1.0",
"encodeurl": "^1.0.2",
"escape-html": "^1.0.3",
"fresh": "^0.5.2",
"logger": "0.0.1",
"mime-types": "^2.1.18",
"node-cache": "^4.2.0",
"path-to-regexp": "^2.2.1",
"qs": "^6.5.2",
"querystring": "^0.2.0",
"randomstring": "^1.1.5",
"statuses": "^1.5.0",
"typeis": "^1.1.1",
"utils-merge": "^1.0.1"
},
"nyc": {
"exclude": [
"**/*.spec.js"
]
}
}