-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
52 lines (52 loc) · 1.36 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
{
"name": "dynamom",
"version": "0.3.7-alpha",
"description": "orm for dynamoDB",
"keywords": [
"dynamodb",
"database",
"orm",
"typescript",
"dynamom"
],
"author": "Moka <[email protected]>",
"license": "MIT",
"repository": {
"type": "git",
"url": "git://github.com/moka-a/dynamom.git"
},
"main": "lib/index.js",
"types": "lib/index.d.ts",
"scripts": {
"prepack": "npm run test && npm run build",
"build": "rimraf ./lib && tsc -p tsconfig.build.json && babel src --out-dir lib --extensions \".ts\"",
"test": "npm run build && npm run test:lint && npm run test:unit",
"test:lint": "eslint src/**/*",
"test:unit": "jest test"
},
"dependencies": {
"aws-sdk": "2",
"core-js": "3.6.5",
"kuuid": "^0.5.0",
"uuid": "8.2.0"
},
"devDependencies": {
"@babel/cli": "7.10.5",
"@babel/core": "7.10.5",
"@babel/plugin-proposal-class-properties": "7.10.4",
"@babel/plugin-proposal-object-rest-spread": "7.10.4",
"@babel/preset-env": "7.10.4",
"@babel/preset-typescript": "7.10.4",
"@types/faker": "4.1.12",
"@types/jest": "26.0.6",
"@types/node": "12.12.51",
"@types/uuid": "8.0.0",
"eslint": "7.5.0",
"eslint-config-stable": "0.8.0",
"faker": "4.1.0",
"jest": "26.1.0",
"rimraf": "3.0.2",
"ts-jest": "26.1.3",
"typescript": "3.9.7"
}
}