-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
43 lines (43 loc) · 1.35 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
{
"name": "@stackcrafters/repository-aws-dynamodb",
"description": "A package that provides a base model with access to AWS Dynamodb",
"version": "1.1.4",
"main": "lib/index.js",
"files": [
"/lib",
"!lib/**/*.test.*",
"package.json"
],
"repository": {
"type": "git",
"url": "https://github.com/stackcrafters/repository-aws-dynamodb.git"
},
"publishConfig": {
"registry": "https://npm.pkg.github.com/",
"access": "restricted"
},
"license": "MIT",
"dependencies": {
"@aws-sdk/client-dynamodb": "^3.357.0",
"@aws-sdk/lib-dynamodb": "^3.357.0"
},
"devDependencies": {
"@stackcrafters/config-babel": "0.1.10",
"@types/jest": "^29.5.2",
"aws-sdk-client-mock": "^2.1.1",
"aws-sdk-client-mock-jest": "^2.1.1"
},
"scripts": {
"clean": "rimraf lib",
"lint": "eslint ./src",
"type-check": "tsc --noEmit",
"build": "npm run clean && npm run lint && npm run build:types && npm run build:js",
"build:types": "tsc --emitDeclarationOnly",
"build:js": "babel ./src -d ./lib --extensions \".js,.ts,.tsx\" --source-maps --ignore '**/*.test.js'",
"watch": "babel ./src -d ./lib --source-maps --watch --ignore '**/*.test.js'",
"test": "jest -c jest.config.js",
"integ": "jest -c jest.integration.config.js",
"test:watch": "jest --watch",
"prepublishOnly": "npm run build"
}
}