-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpackage.json
More file actions
49 lines (49 loc) · 1.39 KB
/
package.json
File metadata and controls
49 lines (49 loc) · 1.39 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
{
"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": "eslint 'src/**/*.ts' 'test/**/*.ts'"
},
"repository": {
"type": "git",
"url": "git+https://github.com/step-security/dynamodb-actions.git"
},
"keywords": [
"github-actions",
"dynamodb",
"typescript"
],
"license": "MIT",
"bugs": {
"url": "https://github.com/step-security/dynamodb-actions/issues"
},
"homepage": "https://github.com/step-security/dynamodb-actions#readme",
"dependencies": {
"@actions/core": "^1.2.6",
"@actions/glob": "^0.2.0",
"@aws-sdk/client-dynamodb": "^3.993.0",
"@aws-sdk/lib-dynamodb": "^3.993.0",
"@hapi/joi": "^17.1.1",
"axios": "^1.6.2"
},
"devDependencies": {
"@types/chai": "^4.3.11",
"@types/hapi__joi": "^17.1.14",
"@types/joi": "^17.2.3",
"@types/mocha": "^10.0.6",
"@types/node": "^20.11.19",
"@typescript-eslint/eslint-plugin": "^8.56.0",
"@typescript-eslint/parser": "^8.56.0",
"chai": "^4.3.10",
"eslint": "^9.39.2",
"execa": "^8.0.1",
"mocha": "^10.2.0",
"ts-node": "^10.9.1",
"typescript": "^5.3.2"
}
}