forked from dynamoose/dynamoose
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
105 lines (105 loc) · 2.56 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
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
{
"name": "dynamoose",
"version": "3.0.0-alpha.7",
"description": "Dynamoose is a modeling tool for Amazon's DynamoDB (inspired by Mongoose)",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"homepage": "https://dynamoosejs.com",
"directories": {
"doc": "docs"
},
"devDependencies": {
"@types/jest": "^27.0.3",
"@types/node": "^16.11.9",
"@typescript-eslint/eslint-plugin": "^5.4.0",
"@typescript-eslint/parser": "^5.4.0",
"dynamoose-logger": "^3.0.0-alpha.1",
"eslint": "^8.2.0",
"eslint-plugin-no-only-tests": "^2.6.0",
"jest": "^27.3.1",
"rimraf": "^3.0.2",
"source-map-support": "^0.5.21",
"typescript": "^4.5.2"
},
"scripts": {
"prepare": "npm run build:clean && npm run build",
"build": "tsc",
"build:sourcemap": "tsc --sourceMap",
"build:clean": "rimraf dist",
"build:watch": "npm run build -- -w",
"build:sourcemap:watch": "npm run build:sourcemap -- -w",
"test:nocoverage": "jest",
"test": "npm run test:nocoverage -- --coverage --transformIgnorePatterns=''",
"test:types": "tsc --project test/types/tsconfig.json",
"lint": "eslint . --ext .ts,.js --max-warnings 0",
"lint:fix": "npm run lint -- --fix",
"site:install": "cd docs && npm install",
"site:start": "cd docs && npm start",
"site:build": "cd docs && npm run build",
"site:swizzle": "cd docs && npm run swizzle"
},
"repository": {
"type": "git",
"url": "git+https://github.com/dynamoose/dynamoose.git"
},
"author": {
"name": "Charlie Fish",
"email": "[email protected]",
"url": "https://charlie.fish"
},
"contributors": [
{
"name": "Brandon Goode"
}
],
"bugs": {
"url": "https://github.com/dynamoose/dynamoose/issues"
},
"dependencies": {
"@aws-sdk/client-dynamodb": "^3.44.0",
"@aws-sdk/util-dynamodb": "^3.44.0",
"dynamoose-utils": "^3.0.0-alpha.2",
"js-object-utilities": "^2.0.0"
},
"license": "Unlicense",
"keywords": [
"dynamodb",
"dynamo",
"mongoose",
"aws",
"amazon",
"document",
"model",
"schema",
"database",
"data",
"datastore",
"query",
"scan",
"nosql",
"db",
"nosql",
"store",
"document store",
"table",
"json",
"object",
"storage"
],
"engines": {
"node": ">=12.0.0"
},
"files": [
"dist"
],
"funding": [
{
"type": "github-sponsors",
"url": "https://github.com/sponsors/fishcharlie"
},
{
"type": "opencollective",
"url": "https://opencollective.com/dynamoose"
}
]
}