UNPKG

2.25 kBJSONView Raw
1{
2 "name": "dynamoose",
3 "version": "2.2.0",
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://github.com/dynamoose/dynamoose#readme",
8 "directories": {
9 "doc": "docs"
10 },
11 "devDependencies": {
12 "@typescript-eslint/eslint-plugin": "^2.30.0",
13 "@typescript-eslint/parser": "^2.30.0",
14 "chai": "^4.2.0",
15 "chai-as-promised": "^7.1.1",
16 "eslint": "^6.8.0",
17 "mocha": "^7.1.2",
18 "nyc": "^15.0.1",
19 "typescript": "^3.8.3"
20 },
21 "scripts": {
22 "prepare": "npm run build:clean; npm run build",
23 "build": "tsc",
24 "build:clean": "rm -rf dist",
25 "build:watch": "npm run build -- -w",
26 "test:nocoverage": "mocha",
27 "test": "nyc npm run test:nocoverage",
28 "test:debug": "npm run test:nocoverage -- --no-timeout --inspect=9229",
29 "test:debug:breakpoint": "npm run test:nocoverage -- --no-timeout --inspect-brk=9229",
30 "lint": "eslint . --ext .ts,.js --max-warnings 0",
31 "lint:fix": "npm run lint -- --fix",
32 "site:install": "cd docs && npm install",
33 "site:start": "cd docs && npm start",
34 "site:build": "cd docs && npm run build",
35 "site:swizzle": "cd docs && npm run swizzle"
36 },
37 "repository": {
38 "type": "git",
39 "url": "git+https://github.com/dynamoose/dynamoose.git"
40 },
41 "author": {
42 "name": "Charlie Fish",
43 "email": "fishcharlie.code@gmail.com",
44 "url": "https://charlie.fish"
45 },
46 "contributors": [
47 {
48 "name": "Brandon Goode"
49 }
50 ],
51 "bugs": {
52 "url": "https://github.com/dynamoose/dynamoose/issues"
53 },
54 "dependencies": {
55 "@types/node": "^13.13.4",
56 "@types/source-map-support": "^0.5.1",
57 "aws-sdk": "^2.668.0",
58 "source-map-support": "^0.5.19",
59 "uuid": "^8.0.0"
60 },
61 "license": "Unlicense",
62 "keywords": [
63 "dynamodb",
64 "dynamo",
65 "mongoose",
66 "aws",
67 "amazon",
68 "document",
69 "model",
70 "schema",
71 "database",
72 "data",
73 "datastore",
74 "query",
75 "scan",
76 "nosql",
77 "db",
78 "nosql",
79 "store",
80 "document store",
81 "table",
82 "json",
83 "object",
84 "storage"
85 ],
86 "engines": {
87 "node": ">=8.0.0"
88 },
89 "files": [
90 "dist"
91 ]
92}