-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
92 lines (92 loc) · 2.52 KB
/
package.json
File metadata and controls
92 lines (92 loc) · 2.52 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
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
{
"name": "decision-maker",
"version": "1.0.0",
"description": "Http triggered lambda functions for decision making, which can be integrated with slack commands.",
"scripts": {
"deploy": "serverless deploy -v",
"lint": "eslint src --ext .js,.ts",
"release": "semantic-release --debug",
"remove": "serverless remove -v",
"start": "serverless offline start",
"test": "jest"
},
"husky": {
"hooks": {
"pre-commit": "tsc --noEmit && lint-staged",
"commit-msg": "echo $HUSKY_GIT_PARAMS && commitlint -E HUSKY_GIT_PARAMS"
}
},
"lint-staged": {
"*.ts": "eslint src --ext .js,.ts"
},
"repository": {
"type": "git",
"url": "git+https://github.com/jaypeng2015/decision-maker.git"
},
"keywords": [
"decision",
"roll",
"dice",
"coin",
"Step Functions"
],
"author": "Jingwei Peng",
"license": "MIT",
"bugs": {
"url": "https://github.com/jaypeng2015/decision-maker/issues"
},
"homepage": "https://github.com/jaypeng2015/decision-maker#readme",
"devDependencies": {
"@commitlint/cli": "11.0.0",
"@commitlint/config-conventional": "11.0.0",
"@semantic-release/exec": "5.0.0",
"@semantic-release/git": "9.0.0",
"@types/aws-lambda": "8.10.72",
"@types/jest": "26.0.20",
"@types/lodash": "4.14.168",
"@types/node": "10.17.52",
"@typescript-eslint/eslint-plugin": "4.15.1",
"@typescript-eslint/eslint-plugin-tslint": "4.15.1",
"@typescript-eslint/parser": "4.15.1",
"eslint": "7.20.0",
"eslint-config-prettier": "6.15.0",
"eslint-plugin-import": "2.22.1",
"eslint-plugin-jest": "24.1.5",
"eslint-plugin-prettier": "3.3.1",
"husky": "4.3.8",
"jest": "26.6.3",
"lint-staged": "10.5.4",
"prettier": "2.2.1",
"semantic-release": "17.3.9",
"serverless": "2.25.1",
"serverless-offline": "5.12.1",
"serverless-pseudo-parameters": "2.5.0",
"serverless-step-functions": "2.29.0",
"serverless-step-functions-offline": "2.1.4",
"serverless-webpack": "5.3.5",
"timekeeper": "2.2.0",
"ts-jest": "26.5.1",
"ts-loader": "8.0.17",
"typescript": "4.1.5",
"webpack": "5.22.0",
"webpack-node-externals": "2.5.2"
},
"dependencies": {
"aws-sdk": "2.771.0",
"aws-xray-sdk": "3.2.0",
"axios": "0.21.1",
"lodash": "4.17.20",
"source-map-support": "0.5.19"
},
"jest": {
"moduleFileExtensions": [
"ts",
"tsx",
"js"
],
"transform": {
"\\.(ts|tsx)$": "ts-jest"
},
"testRegex": ".*test\\.(ts|tsx|js)$"
}
}