-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathpackage.json
70 lines (70 loc) · 1.84 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
{
"name": "dynamodb-actions",
"version": "0.1.0",
"description": "GitHub action that integrates with Amazon DynamoDB",
"main": "index.js",
"scripts": {
"clean": "rm -rf dist",
"test": "AWS_ACCESS_KEY_ID=fake AWS_SECRET_ACCESS_KEY=fake mocha -r ts-node/register -t 300000 'test/**/*.ts'",
"build": "npm run clean && tsc",
"lint": "tslint '{src,test}/**/*.ts'"
},
"repository": {
"type": "git",
"url": "git+https://github.com/mooyoul/dynamodb-actions.git"
},
"keywords": [
"github-actions",
"dynamodb",
"typescript"
],
"author": "MooYeol Prescott Lee <mooyoul@gmail.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/mooyoul/dynamodb-actions/issues"
},
"homepage": "https://github.com/mooyoul/dynamodb-actions#readme",
"devDependencies": {
"@prescott/commitlint-preset": "1.0.3",
"@prescott/tslint-preset": "1.0.1",
"@semantic-release/changelog": "5.0.1",
"@semantic-release/commit-analyzer": "8.0.1",
"@semantic-release/exec": "5.0.0",
"@semantic-release/git": "9.0.1",
"@semantic-release/release-notes-generator": "9.0.3",
"@types/chai": "4.2.22",
"@types/hapi__joi": "17.1.7",
"@types/joi": "14.3.4",
"@types/mocha": "8.2.3",
"@types/node": "12.20.28",
"chai": "4.3.4",
"execa": "4.1.0",
"husky": "4.3.8",
"mocha": "8.4.0",
"semantic-release": "17.4.7",
"ts-node": "8.10.2",
"tslint": "6.1.3",
"typescript": "3.9.10"
},
"dependencies": {
"@actions/core": "^1.2.6",
"@actions/glob": "^0.2.0",
"@hapi/joi": "^17.1.1",
"aws-sdk": "^2.703.0"
},
"config": {
"commitizen": {
"path": "cz-conventional-changelog"
}
},
"husky": {
"hooks": {
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS"
}
},
"commitlint": {
"extends": [
"@prescott/commitlint-preset"
]
}
}