UNPKG

2.57 kBJSONView Raw
1{
2 "name": "dynamoose",
3 "version": "2.8.3",
4 "description": "Dynamoose is a modeling tool for Amazon's DynamoDB (inspired by Mongoose)",
5 "main": "dist/index.js",
6 "types": "dist/index.d.ts",
7 "homepage": "https://dynamoosejs.com",
8 "directories": {
9 "doc": "docs"
10 },
11 "devDependencies": {
12 "@types/node": "^16.6.1",
13 "@types/source-map-support": "^0.5.4",
14 "@typescript-eslint/eslint-plugin": "^4.29.1",
15 "@typescript-eslint/parser": "^4.29.1",
16 "chai": "^4.3.4",
17 "chai-as-promised": "^7.1.1",
18 "eslint": "^7.32.0",
19 "mocha": "^7.2.0",
20 "nyc": "^15.1.0",
21 "rimraf": "^3.0.2",
22 "typescript": "^4.3.5"
23 },
24 "scripts": {
25 "prepare": "npm run build:clean && npm run build",
26 "build": "tsc",
27 "build:clean": "rimraf dist",
28 "build:watch": "npm run build -- -w",
29 "test:nocoverage": "mocha",
30 "test": "nyc npm run test:nocoverage",
31 "test:debug": "npm run test:nocoverage -- --no-timeout --inspect=9229",
32 "test:debug:breakpoint": "npm run test:nocoverage -- --no-timeout --inspect-brk=9229",
33 "test:types": "tsc --project test/types/tsconfig.json",
34 "lint": "eslint . --ext .ts,.js --max-warnings 0",
35 "lint:fix": "npm run lint -- --fix",
36 "site:install": "cd docs && npm install",
37 "site:start": "cd docs && npm start",
38 "site:build": "cd docs && npm run build",
39 "site:swizzle": "cd docs && npm run swizzle"
40 },
41 "repository": {
42 "type": "git",
43 "url": "git+https://github.com/dynamoose/dynamoose.git"
44 },
45 "author": {
46 "name": "Charlie Fish",
47 "email": "fishcharlie.code@gmail.com",
48 "url": "https://charlie.fish"
49 },
50 "contributors": [
51 {
52 "name": "Brandon Goode"
53 }
54 ],
55 "bugs": {
56 "url": "https://github.com/dynamoose/dynamoose/issues"
57 },
58 "dependencies": {
59 "aws-sdk": "^2.968.0",
60 "js-object-utilities": "^2.0.0",
61 "source-map-support": "^0.5.19",
62 "uuid": "^8.3.2"
63 },
64 "license": "Unlicense",
65 "keywords": [
66 "dynamodb",
67 "dynamo",
68 "mongoose",
69 "aws",
70 "amazon",
71 "document",
72 "model",
73 "schema",
74 "database",
75 "data",
76 "datastore",
77 "query",
78 "scan",
79 "nosql",
80 "db",
81 "nosql",
82 "store",
83 "document store",
84 "table",
85 "json",
86 "object",
87 "storage"
88 ],
89 "engines": {
90 "node": ">=8.0.0"
91 },
92 "files": [
93 "dist"
94 ],
95 "funding": [
96 {
97 "type": "github-sponsors",
98 "url": "https://github.com/sponsors/fishcharlie"
99 },
100 {
101 "type": "opencollective",
102 "url": "https://opencollective.com/dynamoose"
103 }
104 ]
105}