forked from davidecavaliere/serverless-api-decorators
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
72 lines (72 loc) · 1.93 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
61
62
63
64
65
66
67
68
69
70
71
72
{
"name": "sls-api-decorators",
"version": "0.3.3",
"description": "serveless plugin to write lambda functions in typescript making use of IoC technics to reduce coding effort",
"license": "MIT",
"repository": "http://github.com/davidecavaliere/serverless-api-decorators",
"author": "",
"keywords": [
"serverless api typescript decorators auto configuration"
],
"files": [
"lib"
],
"main": "lib/index.js",
"typings": "lib/index.d.ts",
"scripts": {
"clean": "rimraf lib",
"lint": "tslint --force --format verbose \"src/**/*.ts\"",
"build": "npm run clean && npm run lint && echo Using TypeScript && tsc --version && tsc --pretty",
"test": "npm run build && mocha --compilers ts:ts-node/register --recursive 'test/**/*-spec.ts'",
"coverage": "nyc --include='src/**/*.ts' --reporter=text --reporter=html --reporter=lcov mocha --compilers ts:ts-node/register --recursive 'test/**/*.test.ts'",
"watch": "npm run build -- --watch",
"watch:test": "npm run test -- --watch",
"release": "standard-version"
},
"dependencies": {
"aws-sdk": "^2.62.0",
"aws-sdk-typescript": "0.0.3",
"debug": "^2.6.8"
},
"peerDependencies": {
"ts-node": "^3.0.0",
"tslint": "^5.0.0",
"typescript": "^2.0.0"
},
"devDependencies": {
"@types/chai": "^3.5.2",
"@types/debug": "0.0.29",
"@types/mocha": "^2.2.41",
"@types/node": "^7.0.0",
"chai": "^3.0.0",
"coveralls": "^2.0.0",
"mocha": "^3.0.0",
"nyc": "^10.0.0",
"rimraf": "^2.0.0",
"source-map-support": "^0.4.15",
"standard-version": "^4.0.0",
"ts-node": "^3.0.0",
"tslint": "^5.0.0",
"typescript": "^2.0.0",
"typings": "^2.1.1"
},
"engines": {
"node": ">=4.0.0"
},
"nyc": {
"include": [
"src/**/*.ts"
],
"exclude": [
"lib"
],
"extension": [
".ts"
],
"require": [
"ts-node/register"
],
"reporter": [],
"all": true
}
}