-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
87 lines (87 loc) · 1.82 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
{
"name": "dynamoose-utils",
"version": "3.0.0-alpha.2",
"description": "Internal utilities for Dynamoose",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"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",
"lint": "eslint . --ext .ts,.js --max-warnings 0",
"lint:fix": "npm run lint -- --fix"
},
"repository": {
"type": "git",
"url": "git+https://github.com/dynamoose/dynamoose-utils.git"
},
"author": {
"name": "Charlie Fish",
"email": "[email protected]",
"url": "https://charlie.fish"
},
"contributors": [
{
"name": "Brandon Goode"
}
],
"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": ">=10.0.0"
},
"files": [
"dist"
],
"funding": [
{
"type": "github-sponsors",
"url": "https://github.com/sponsors/fishcharlie"
},
{
"type": "opencollective",
"url": "https://opencollective.com/dynamoose"
}
],
"bugs": {
"url": "https://github.com/dynamoose/dynamoose-utils/issues"
},
"homepage": "https://dynamoosejs.com",
"devDependencies": {
"@types/node": "^14.14.35",
"@typescript-eslint/eslint-plugin": "^4.18.0",
"@typescript-eslint/parser": "^4.18.0",
"eslint": "^7.22.0",
"nyc": "^15.1.0",
"rimraf": "^3.0.2",
"typescript": "^4.2.3"
},
"dependencies": {
"js-object-utilities": "^2.0.0"
}
}