UNPKG

2.9 kBJSONView Raw
1{
2 "name": "dynamoose",
3 "version": "1.11.0",
4 "description": "Dynamoose is a modeling tool for Amazon's DynamoDB (inspired by Mongoose)",
5 "typings": "./dynamoose.d.ts",
6 "homepage": "https://dynamoosejs.com",
7 "repository": {
8 "type": "git",
9 "url": "https://github.com/dynamoosejs/dynamoose"
10 },
11 "bugs": {
12 "url": "https://github.com/dynamoosejs/dynamoose/issues"
13 },
14 "main": "dist/index.js",
15 "files": [
16 "dynamoose.d.ts",
17 "dist/*"
18 ],
19 "scripts": {
20 "test": "ts-mocha test/",
21 "test:debug": "ts-mocha --inspect test/",
22 "test:debug:brk": "ts-mocha --inspect-brk test/",
23 "lint": "eslint .",
24 "tslint": "tslint lib/**/*.ts",
25 "coverage": "nyc npm test",
26 "prepack": "tsc",
27 "commit": "git-cz",
28 "sem-rel": "semantic-release",
29 "lint:commit": "commitlint -E $GIT_PARAMS",
30 "ci": "npm run lint && npm run tslint && npm run coverage",
31 "coveralls-ci": "npm run ci && nyc report --reporter=text-lcov | coveralls"
32 },
33 "keywords": [
34 "dynamodb",
35 "dynamo",
36 "mongoose",
37 "aws",
38 "amazon",
39 "document",
40 "model",
41 "schema",
42 "database",
43 "data",
44 "datastore",
45 "query",
46 "scan",
47 "nosql",
48 "db",
49 "nosql",
50 "store",
51 "document store",
52 "table",
53 "json"
54 ],
55 "author": "Brandon Goode",
56 "license": "MIT",
57 "devDependencies": {
58 "@commitlint/cli": "7.5.1",
59 "@commitlint/config-conventional": "7.5.0",
60 "@semantic-release/changelog": "3.0.2",
61 "@semantic-release/commit-analyzer": "6.1.0",
62 "@semantic-release/git": "7.0.8",
63 "@semantic-release/github": "5.2.10",
64 "@semantic-release/npm": "5.1.4",
65 "@semantic-release/release-notes-generator": "7.1.4",
66 "commitizen": "3.0.7",
67 "coveralls": "3.0.2",
68 "cz-conventional-changelog": "2.1.0",
69 "dynamodb-local": "0.0.24",
70 "eslint": "5.13.0",
71 "glob": "7.1.3",
72 "husky": "1.3.1",
73 "jsdoc-to-markdown": "^5.0.0",
74 "mocha": "5.2.0",
75 "nyc": "14.1.1",
76 "semantic-release": "^15.13.16",
77 "should": "13.2.3",
78 "ts-mocha": "6.0.0",
79 "ts-node": "8.0.3",
80 "tslint": "5.13.1",
81 "typescript": "3.3.3333"
82 },
83 "dependencies": {
84 "@types/node": "11.11.0",
85 "aws-sdk": "2.395.0",
86 "debug": "4.1.1",
87 "deep-equal": "1.0.1",
88 "hooks": "0.3.2",
89 "object-path": "0.11.4",
90 "q": "1.5.1"
91 },
92 "engines": {
93 "node": ">=8.0.0"
94 },
95 "nyc": {
96 "include": [
97 "lib/**/*.js"
98 ],
99 "reporter": [
100 "html",
101 "text-summary"
102 ],
103 "check-coverage": true,
104 "lines": 80,
105 "statements": 80,
106 "functions": 80,
107 "branches": 80
108 },
109 "husky": {
110 "hooks": {
111 "commit-msg": "commitlint -E HUSKY_GIT_PARAMS",
112 "pre-commit": "npm run lint && npm run tslint",
113 "pre-push": "npm run ci"
114 }
115 },
116 "config": {
117 "commitizen": {
118 "path": "./node_modules/cz-conventional-changelog"
119 }
120 }
121}