-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
52 lines (52 loc) · 1.43 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
{
"name": "pip-services3-aws-node",
"version": "3.1.0",
"author": "Conceptual Vision Consulting LLC",
"description": "AWS-specific components for Pip.Services in Node.js",
"contributors": [
{
"name": "Sergey Seroukhov",
"email": "[email protected]"
}
],
"main": "./obj/src/index.js",
"typings": "./obj/src/index.d.ts",
"keywords": [
"pip.services",
"microservice",
"aws",
"library"
],
"noAnalyze": true,
"repository": {
"type": "git",
"url": "ssh://[email protected]:pip-services3-node/pip-services3-aws-node.git"
},
"license": "MIT",
"engines": {
"node": ">=0.6.14"
},
"private": false,
"scripts": {
"build": "tsc",
"watch": "tsc --watch",
"test": "mocha -t 10000 -R spec -u tdd --recursive ./obj/test",
"retest": "tsc && mocha -t 10000 -R spec -u tdd --recursive ./obj/test"
},
"dependencies": {
"pip-services3-commons-node": "^3.0.0",
"pip-services3-components-node": "^3.2.3",
"pip-services3-container-node": "^3.0.1",
"pip-services3-rpc-node": "^3.6.2"
},
"devDependencies": {
"@types/node": "*",
"@types/lodash": "^4.0.0",
"@types/async": "^2.0.0",
"@types/mocha": "*",
"@types/chai": "*",
"mocha": "^7.2.0",
"chai": "*",
"aws-sdk": "*"
}
}