-
Notifications
You must be signed in to change notification settings - Fork 12
/
Copy pathpackage.json
114 lines (114 loc) · 2.61 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
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
{
"name": "s3-db",
"version": "3.6.0",
"description": "Document DB syntax wrapper for AWS S3.",
"main": "lib/index.js",
"types": "lib/index.d.ts",
"typescript": {
"definition": "lib/index.d.ts"
},
"files": [
"lib/**/*",
"README.md"
],
"homepage": "https://www.npmjs.com/package/s3-db",
"author": "Matt Filion <matt.filion@gmail.com>",
"scripts": {
"compile": "npm run clean && tsc -p .",
"test": "nyc mocha --require ts-node/register \"spec/**/*.spec.ts\"",
"coverage": "nyc report --reporter text-summary",
"coverage-export": "nyc report --reporter=text-lcov > coverage.lcov",
"format": "prettier --write \"lib/**/*.ts\" \"lib/**/*.js\" \"src/**/*.ts\"",
"build": "npm run compile",
"clean": "rm -rf coverage lib .nyc_output .vscode"
},
"dependencies": {
"@mu-ts/logger": "^3.0.6",
"reflect-metadata": "^0.1.13",
"uuid": "^3.4.0"
},
"devDependencies": {
"@types/aws-sdk": "^2.7.0",
"@types/chai": "^4.2.9",
"@types/chai-as-promised": "^7.1.2",
"@types/mocha": "^5.2.7",
"@types/node": "^11.15.7",
"@types/sinon": "^7.5.1",
"@types/uuid": "^3.4.7",
"aws-sdk": "^2.623.0",
"chai": "^4.2.0",
"chai-as-promised": "^7.1.1",
"codecov": "^3.6.5",
"mocha": "^6.2.2",
"nyc": "^14.1.1",
"prettier": "^1.19.1",
"sinon": "^7.5.0",
"ts-mocha": "^6.0.0",
"typescript": "^3.8.2"
},
"maintainers": [
{
"name": "Matt Filion",
"email": "matt.filion@gmail.com"
}
],
"contributors": [
{
"name": "Matt Filion",
"email": "matt.filion@gmail.com"
}
],
"typings": "lib/index.d.ts",
"repository": {
"type": "git",
"url": "https://github.com/matt-filion/s3-db.git"
},
"bugs": {
"url": "https://github.com/matt-filion/s3-db/issues"
},
"private": false,
"readmeFilename": "README.md",
"licenses": [
{
"type": "MIT",
"url": "http://github.com/jeremyosborne/packagejsonexample/blob/master/LICENSE.txt"
}
],
"keywords": [
"s3db",
"aws",
"aws s3",
"s3",
"database",
"db",
"s3 database",
"s3 db"
],
"nyc": {
"include": [
"src/*.ts",
"src/**/*.ts"
],
"exclude": [
"src/authorizer-jwt/**",
"src/rest-healthcheck/**",
"src/**/validations/index.ts",
"src/**/handler.ts",
"src/nlp-trainer/typings-custom/**"
],
"extension": [
".ts"
],
"require": [
"ts-node/register",
"source-map-support/register"
],
"reporter": [
"text-summary",
"html"
],
"sourceMap": true,
"instrument": true,
"all": true
}
}