forked from shiftcode/dynamo-easy
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
88 lines (88 loc) · 2.96 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
{
"name": "@shiftcoders/dynamo-easy",
"version": "0.0.0",
"description": "DynamoDB client for NodeJS and browser with a fluent api to build requests. We take care of the type mapping between JS and DynamoDB, customizable trough typescript decorators.",
"keywords": [
"api",
"aws",
"dynamo",
"dynamo client",
"dynamodb",
"dynamodb client",
"expression",
"expression builder",
"filter expression",
"fluent-api",
"lambda",
"mapper",
"objectmapper",
"orm",
"serverless",
"typescript",
"typescript-decorators",
"update expression"
],
"homepage": "https://shiftcode.gitbook.io/dynamo-easy/",
"repository": {
"type": "git",
"url": "https://github.com/shiftcode/dynamo-easy"
},
"license": "MIT",
"author": "Michael Wittwer <[email protected]>",
"files": [
"dist",
"!dist/docs"
],
"main": "./dist/dynamo-easy.js",
"module": "./dist/_esm5/dynamo-easy.js",
"typings": "./dist/_types/dynamo-easy.d.ts",
"scripts": {
"prebuild": "rimraf dist",
"build": "tsc --outDir ./dist/_esm2015/ && tsc --outDir ./dist/_esm5/ --target es5 && tsc --outDir ./dist/ --module commonjs",
"check-snippets": "npx tsc --outDir ./dist-snippets --project ./snippets/tsconfig.json && rimraf dist-snippets",
"commity": "commit",
"docs:build": "rimraf ./dist/docs && typedoc --out dist/docs --readme ./doc-intro.md --target es6 --hideGenerator --theme minimal --excludePrivate --stripInternal --ignoreCompilerErrors",
"docs:deploy": "ts-node tools/gh-pages-publish",
"lint": "tslint --project tsconfig.json -t codeFrame --fix",
"lint:ci": "tslint --project tsconfig.json -t codeFrame",
"prettier": "prettier --write --config ./.prettierrc.yml '{src,test}/**/*.ts'",
"report-coverage": "cat ./coverage/lcov.info | coveralls",
"test": "jest",
"test:ci": "jest --coverage --no-cache",
"test:watch": "jest --watch",
"tslint:custom-rule:build": "tsc ./tools/tslint/noDynamoNamedImportRule.ts",
"tslint:custom-rule:test": "tslint --test ./tools/tslint/test"
},
"devDependencies": {
"@commitlint/cli": "^8.1.0",
"@commitlint/config-conventional": "^8.1.0",
"@commitlint/prompt-cli": "^8.1.0",
"@types/jest": "^25.2.1",
"@types/node": "8.10.40",
"aws-sdk": "^2.401.0",
"colors": "^1.3.3",
"coveralls": "^3.0.6",
"husky": "^4.0.0",
"jest": "^25.2.7",
"lint-staged": "^10.0.0",
"lodash.camelcase": "^4.3.0",
"prettier": "^2.0.2",
"reflect-metadata": "^0.1.13",
"rimraf": "^3.0.0",
"semantic-release": "^17.0.0",
"sort-package-json": "^1.22.1",
"ts-jest": "^25.0.0",
"ts-node": "^8.3.0",
"tslint": "^5.19.0",
"tslint-config-prettier": "^1.18.0",
"tsutils": "^3.17.1",
"typedoc": "0.14.0",
"typedoc-plugin-external-module-name": "^2.1.0",
"typescript": ">=2.9.1 <4.0.0"
},
"peerDependencies": {
"aws-sdk": "^2.401.0",
"reflect-metadata": "^0.1.12",
"tslib": "^1.10.0"
}
}