-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
47 lines (47 loc) · 1.12 KB
/
package.json
File metadata and controls
47 lines (47 loc) · 1.12 KB
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
{
"name": "node-sqs-soap-nmbrsapi-workflow",
"version": "1.0.0",
"description": "",
"main": "index.js",
"mocha": {
"require": "ts-node/register",
"reporter": "spec",
"recursive": true,
"checkLeaks": true,
"exit": true,
"spec": "test/**/*.spec.ts"
},
"repository": {
"type": "git",
"url": "git@github.com:DariuszWietecha/node-sqs-soap-nmbrsapi-workflow.git"
},
"scripts": {
"build": "tsc",
"postinstall": "tsc",
"poststartLocalStack": "node create-queue",
"startLocalStack": "docker-compose -f ./test/docker-compose.yml up -d",
"stopLocalStack": "docker-compose -f ./test/docker-compose.yml down",
"start": "node index.js",
"test": "mocha"
},
"author": "Dariusz Wietecha",
"license": "ISC",
"engines": {
"node": ">=v10.12.0"
},
"dependencies": {
"aws-sdk": "^2.630.0",
"dotenv": "^8.2.0",
"fp-ts": "1.19.5",
"soap": "^0.30.0",
"sqs-consumer": "^5.4.0"
},
"devDependencies": {
"@types/mocha": "^7.0.1",
"mocha": "^7.0.1",
"nock": "^11.9.1",
"ts-node": "^8.6.2",
"tslint": "^6.0.0",
"typescript": "^3.7.5"
}
}