UNPKG

1.71 kBJSONView Raw
1{
2 "name": "dynamoose",
3 "version": "2.0.0",
4 "description": "Dynamoose is a modeling tool for Amazon's DynamoDB (inspired by Mongoose)",
5 "main": "lib/index.js",
6 "homepage": "https://github.com/dynamoose/dynamoose#readme",
7 "directories": {
8 "doc": "docs"
9 },
10 "devDependencies": {
11 "chai": "^4.2.0",
12 "chai-as-promised": "^7.1.1",
13 "eslint": "^6.8.0",
14 "mocha": "^7.1.1",
15 "nyc": "^15.0.1"
16 },
17 "scripts": {
18 "test": "nyc --all mocha && nyc report --reporter=html",
19 "test:debug": "mocha --inspect=9229",
20 "test:debug:breakpoint": "mocha --inspect-brk=9229",
21 "lint": "eslint .",
22 "test-nocoverage": "mocha",
23 "site:install": "cd docs && npm install",
24 "site:start": "cd docs && npm start",
25 "site:build": "cd docs && npm run build",
26 "site:swizzle": "cd docs && npm run swizzle"
27 },
28 "repository": {
29 "type": "git",
30 "url": "git+https://github.com/dynamoose/dynamoose.git"
31 },
32 "author": {
33 "name": "Charlie Fish",
34 "email": "fishcharlie.code@gmail.com",
35 "url": "https://charlie.fish"
36 },
37 "contributors": [
38 {
39 "name": "Brandon Goode"
40 }
41 ],
42 "bugs": {
43 "url": "https://github.com/dynamoose/dynamoose/issues"
44 },
45 "dependencies": {
46 "aws-sdk": "^2.662.0",
47 "uuid": "^7.0.3"
48 },
49 "license": "Unlicense",
50 "keywords": [
51 "dynamodb",
52 "dynamo",
53 "mongoose",
54 "aws",
55 "amazon",
56 "document",
57 "model",
58 "schema",
59 "database",
60 "data",
61 "datastore",
62 "query",
63 "scan",
64 "nosql",
65 "db",
66 "nosql",
67 "store",
68 "document store",
69 "table",
70 "json",
71 "object",
72 "storage"
73 ],
74 "engines": {
75 "node": ">=8.0.0"
76 },
77 "files": [
78 "lib"
79 ]
80}