-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
83 lines (83 loc) · 2.12 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
73
74
75
76
77
78
79
80
81
82
83
{
"name": "ifto",
"description": "A simple debugging module for AWS Lambda (λ) timeout",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"version": "4.0.0",
"scripts": {
"pretest": "npm run build",
"test": "nyc mocha",
"test-coverage-report": "npm test && cat ./coverage/lcov.info | codacy-coverage && rm -rf ./coverage",
"build": "tsc",
"format": "prettier --write \"**/*.ts\" \"**/*.js\"",
"lint": "tslint -p tsconfig.json",
"prepare": "npm run build",
"prepublishOnly": "npm build && npm test && npm run lint",
"preversion": "npm run lint",
"version": "npm run format && git add -A lib",
"postversion": "git push && git push --tags",
"doc-gen": "typedoc --out doc --theme minimal `find test -name '*.ts' -not -path '*test*' -not -path '*dist*'`"
},
"repository": {
"type": "git",
"url": "git+https://github.com/rpgeeganage/ifto.git"
},
"keywords": [
"debug",
"typescript",
"lambda",
"aws",
"devops"
],
"dependencies": {},
"engines": {
"node": ">=6.0.0"
},
"author": "Ruwan Geeganage",
"license": "MIT",
"devDependencies": {
"@types/aws-lambda": "^8.10.17",
"@types/mocha": "^5.2.5",
"@types/node": "^10.12.18",
"@types/request-promise-native": "^1.0.15",
"@types/sinon": "^7.0.4",
"axios": "^0.18.0",
"codacy-coverage": "^3.3.0",
"mocha": "^5.2.0",
"nyc": "^13.1.0",
"prettier": "^1.14.3",
"request": "^2.88.0",
"request-promise-native": "^1.0.5",
"should": "^13.2.3",
"sinon": "^7.2.3",
"source-map-support": "^0.5.9",
"ts-node": "^7.0.1",
"tslint": "^5.11.0",
"tslint-config-prettier": "^1.15.0",
"typedoc": "^0.14.2",
"typescript": "^3.0.3"
},
"nyc": {
"extension": [
".ts"
],
"exclude": [
"**/*.d.ts",
"test/*.ts"
],
"require": [
"ts-node/register"
],
"reporter": [
"lcov",
"text-summary",
"html"
],
"sourceMap": true,
"instrument": true
},
"bugs": {
"url": "https://github.com/rpgeeganage/ifto/issues"
},
"homepage": "https://github.com/rpgeeganage/ifto#readme"
}