-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
59 lines (59 loc) · 1.37 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
{
"name": "@deepstream/plugin-aws",
"version": "1.0.2",
"description": "A collection of plugins that can be used with deepstream.io and aws",
"main": "dist/src/plugin.js",
"scripts": {
"tsc": "tsc",
"test": "mocha --opts mocha.opts 'src/*.spec.ts' --exit",
"coverage": "nyc mocha 'src/*.spec.ts' --exit",
"ci": "npm run tsc && npm run coverage"
},
"dependencies": {
"@deepstream/types": "^2.1.0",
"aws-cli-js": "^2.0.6",
"aws-sdk": "^2.666.0"
},
"devDependencies": {
"@types/chai": "^4.2.11",
"@types/mocha": "^7.0.2",
"chai": "^4.2.0",
"coveralls": "^3.0.14",
"mocha": "^7.1.1",
"nyc": "^15.0.1",
"ts-node": "^8.9.0",
"tslint": "^6.1.1",
"typescript": "^3.8.3"
},
"nyc": {
"include": [
"src/*.ts"
],
"extension": [
".ts"
],
"require": [
"ts-node/register/transpile-only"
],
"reporter": [
"lcov"
],
"sourceMap": true,
"instrument": true
},
"repository": {
"type": "git",
"url": "git+https://github.com/deepstreamIO/deepstream.io-plugin-aws.git"
},
"keywords": [
"deepstream",
"realtime",
"aws"
],
"author": "deepstreamIO",
"license": "MIT",
"bugs": {
"url": "https://github.com/deepstreamIO/deepstream.io-plugin-aws/issues"
},
"homepage": "https://github.com/deepstreamIO/deepstream.io-plugin-aws#readme"
}