UNPKG

2.53 kBJSONView Raw
1{
2 "name": "dynamoose",
3 "version": "2.7.1",
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": "^14.14.7",
13 "@types/source-map-support": "^0.5.3",
14 "@typescript-eslint/eslint-plugin": "^4.7.0",
15 "@typescript-eslint/parser": "^4.7.0",
16 "chai": "^4.2.0",
17 "chai-as-promised": "^7.1.1",
18 "eslint": "^7.13.0",
19 "mocha": "^7.2.0",
20 "nyc": "^15.1.0",
21 "rimraf": "^3.0.2",
22 "typescript": "^4.0.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.792.0",
60 "source-map-support": "^0.5.19",
61 "uuid": "^8.3.1"
62 },
63 "license": "Unlicense",
64 "keywords": [
65 "dynamodb",
66 "dynamo",
67 "mongoose",
68 "aws",
69 "amazon",
70 "document",
71 "model",
72 "schema",
73 "database",
74 "data",
75 "datastore",
76 "query",
77 "scan",
78 "nosql",
79 "db",
80 "nosql",
81 "store",
82 "document store",
83 "table",
84 "json",
85 "object",
86 "storage"
87 ],
88 "engines": {
89 "node": ">=8.0.0"
90 },
91 "files": [
92 "dist"
93 ],
94 "funding": [
95 {
96 "type": "github-sponsors",
97 "url": "https://github.com/sponsors/fishcharlie"
98 },
99 {
100 "type": "opencollective",
101 "url": "https://opencollective.com/dynamoose"
102 }
103 ]
104}