This repository has been archived by the owner on Sep 7, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
76 lines (76 loc) · 2.29 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
{
"name": "@endemolshinegroup/serverless-slack-notifier",
"description": "A Serverless Slack notification service written in Typescript",
"version": "0.0.1",
"license": "MIT",
"private": true,
"main": "dist/index.js",
"types": "dist/index.d.ts",
"author": {
"name": "Endemol Shine Group Technology",
"url": "https://github.com/EndemolShineGroup"
},
"homepage": "https://github.com/EndemolShineGroup/serverless-slack-notifier",
"repository": {
"type": "git",
"url": "https://github.com/EndemolShineGroup/serverless-slack-notifier.git"
},
"engines": {
"node": ">=8.0.0",
"yarn": ">=1.3.0"
},
"scripts": {
"pretest": "rimraf coverage/",
"prebuild": "rimraf dist/",
"build": "tsc",
"build:docs": "rimraf docs/api && typedoc --out docs/api --target es6 --theme minimal --mode file src",
"test": "yarn test:unit",
"test:unit": "jest .spec.ts",
"test:integration": "jest .i10n.ts",
"commit": "git-cz",
"lint": "tslint -p tsconfig.json -t codeFrame 'src/**/*.ts' -e 'src/**/*.spec.ts'",
"semantic-release": "semantic-release"
},
"dependencies": {
"isomorphic-fetch": "^2.2.1",
"tslib": "^1.9.3"
},
"devDependencies": {
"@commitlint/cli": "^7",
"@commitlint/config-conventional": "^7",
"@endemolshinegroup/cz-github": "^1",
"@endemolshinegroup/prettier-config": "^1",
"@endemolshinegroup/serverless-test-utils": "^1.0.3",
"@endemolshinegroup/tslint-config": "^1",
"@semantic-release/changelog": "^3",
"@semantic-release/git": "^7",
"@types/aws-lambda": "^8.10.13",
"@types/fetch-mock": "^6.0.4",
"@types/isomorphic-fetch": "^0.0.34",
"@types/jest": "^23",
"@types/node": "^10",
"@types/uuid": "^3.4.4",
"aws-sdk": "^2.331.0",
"commitizen": "^3",
"fetch-mock": "^7.0.7",
"husky": "^1",
"jest": "^23",
"lint-staged": "^8",
"prettier": "^1",
"rimraf": "^2",
"semantic-release": "^15",
"serverless": "^1.32.0",
"serverless-webpack": "^5.1.1",
"source-map-support": "^0.5.6",
"ts-jest": "^23",
"ts-loader": "^5.2.2",
"ts-node": "^7.0.1",
"tslint": "^5",
"tslint-config-prettier": "^1",
"tslint-eslint-rules": "^5",
"typedoc": "^0.13.0",
"typescript": "^3",
"uuid": "^3.3.2",
"webpack": "^4.5.0"
}
}