dynamoose
Version:
Dynamoose is a modeling tool for Amazon's DynamoDB (inspired by Mongoose)
104 lines (103 loc) • 2.5 kB
JSON
{
"name": "dynamoose",
"version": "2.3.0",
"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": {
"@typescript-eslint/eslint-plugin": "^2.30.0",
"@typescript-eslint/parser": "^2.30.0",
"chai": "^4.2.0",
"chai-as-promised": "^7.1.1",
"eslint": "^6.8.0",
"mocha": "^7.1.2",
"nyc": "^15.0.1",
"typescript": "^3.9.5"
},
"scripts": {
"prepare": "npm run build:clean && npm run build",
"build": "tsc",
"build:clean": "rm -rf dist",
"build:watch": "npm run build -- -w",
"test:nocoverage": "mocha",
"test": "nyc npm run test:nocoverage",
"test:debug": "npm run test:nocoverage -- --no-timeout --inspect=9229",
"test:debug:breakpoint": "npm run test:nocoverage -- --no-timeout --inspect-brk=9229",
"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": "fishcharlie.code@gmail.com",
"url": "https://charlie.fish"
},
"contributors": [
{
"name": "Brandon Goode"
}
],
"bugs": {
"url": "https://github.com/dynamoose/dynamoose/issues"
},
"dependencies": {
"@types/node": "^13.13.4",
"@types/source-map-support": "^0.5.1",
"aws-sdk": "^2.668.0",
"source-map-support": "^0.5.19",
"uuid": "^8.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": ">=8.0.0"
},
"files": [
"dist"
],
"funding": [
{
"type": "github-sponsors",
"url": "https://github.com/sponsors/fishcharlie"
},
{
"type": "opencollective",
"url": "https://opencollective.com/dynamoose"
}
]
}