forked from PruvoNet/squiss-ts
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
81 lines (81 loc) · 2.29 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
{
"name": "squiss-ts",
"version": "4.4.1",
"description": "High-volume SQS poller",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"engines": {
"node": "^6 || ^8 || ^10 || ^12 || ^14 || ^16 || ^18"
},
"scripts": {
"postinstall": " node -e \"const semver = require('semver');const relevant = semver.lt(process.version, '10.16.0');if (relevant == false) {process.exit(0);}try {require('iltorb'); process.exit(0);} catch (err){process.exit(1);}\" || yarn add --pure-lockfile --ignore-engines [email protected]",
"clean": "rm -rf node_modules build coverage dist",
"build": "yarn lint && yarn compile",
"compile": "tsc",
"test": "yarn lint && yarn mocha",
"mocha": "_mocha --opts src/test/mocha.opts",
"cover": "nyc --reporter=lcov --reporter=text-summary npm run mocha",
"lint": "tslint -c tslint.json \"src/**/*.ts\" \"test/**/*.ts\"",
"benchmark": "tsc --extendedDiagnostics --incremental false"
},
"repository": {
"type": "git",
"url": "git+https://github.com/PruvoNet/squiss-ts.git"
},
"files": [
"/dist/*.d.ts",
"/dist/*.js"
],
"keywords": [
"aws",
"amazon",
"sqs",
"polling",
"poll",
"poller",
"queue",
"typescript",
"sns",
"s3",
"extended",
"client",
"sdk"
],
"author": "Regev Brody <[email protected]>",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/PruvoNet/squiss-ts/issues"
},
"homepage": "https://github.com/PruvoNet/squiss-ts#readme",
"dependencies": {
"aws-sdk": "2.814.0",
"linked-list": "^2.1.0",
"semver": "6.3.0",
"ts-type-guards": "^0.7.0",
"uuid": "^8.3.2"
},
"devDependencies": {
"@istanbuljs/nyc-config-typescript": "0.1.3",
"@types/chai": "^4.2.12",
"@types/chai-as-promised": "^7.1.3",
"@types/iltorb": "^2.3.2",
"@types/mocha": "^8.0.0",
"@types/node": "^14.0.26",
"@types/proxyquire": "^1.3.28",
"@types/semver": "7.3.1",
"@types/uuid": "^8.0.0",
"chai": "^4.2.0",
"chai-as-promised": "^7.1.1",
"delay": "^4.4.0",
"dirty-chai": "^2.0.1",
"mocha": "6.2.2",
"nyc": "14.1.1",
"proxyquire": "^2.1.3",
"sinon": "^7.5.0",
"sinon-chai": "^3.5.0",
"source-map-support": "^0.5.19",
"ts-node": "^8.10.2",
"tslint": "^6.1.3",
"typescript": "4.6.4"
}
}