-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
64 lines (64 loc) · 2.47 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
{
"name": "@figurepos/sqs-consumer",
"version": "5.12.0",
"description": "SQS Consumer",
"scripts": {
"build": "npm run clean && ./node_modules/.bin/tsc",
"check:deps": "./node_modules/.bin/depcheck",
"check:licenses": "./node_modules/.bin/license-compliance --production --allow=\"0BSD;Apache-2.0;BSD-1-Clause;BSD-2-Clause;BSD-3-Clause;ISC;MIT;MPL-1.0;MPL-1.1;MPL-2.0;Unlicense\" --report=detailed",
"ci:test": "npm run tsc && npm run lint && npm run test",
"clean": "rm -fr lib/*",
"lint": "./node_modules/.bin/eslint '*/**/*.{js,json,ts}'",
"lint:fix": "./node_modules/.bin/eslint '*/**/*.{js,json,ts}' --quiet --fix",
"posttest": "npm run lint",
"prepublish": "npm run build",
"pretest": "npm run build",
"prettier:check": "./node_modules/.bin/prettier --check '**/*.js' '**/*.json' '**/*.ts'",
"prettier:fix": "./node_modules/.bin/prettier --write '**/*.js' '**/*.json' '**/*.ts'",
"release": "npm run build && ./node_modules/.bin/release-it",
"test": "mocha --recursive --full-trace --exit",
"tsc": "./node_modules/.bin/tsc --noEmit",
"watch": "tsc --watch"
},
"repository": {
"type": "git",
"url": "https://github.com/FigurePOS/sqs-consumer-2.git"
},
"license": "Apache-2.0",
"devDependencies": {
"@aws-sdk/client-sqs": "3.514.0",
"@figuredev/eslint-config-node": "^2.0.1",
"@figuredev/prettier-config": "^2.1.0",
"@release-it/conventional-changelog": "^9.0.3",
"@smithy/smithy-client": "^3.5.0",
"@types/chai": "^4.2.11",
"@types/mocha": "^8.2.3",
"@types/node": "^22.10.2",
"@types/sinon": "^9.0.11",
"@typescript-eslint/eslint-plugin": "^5.62.0",
"@typescript-eslint/parser": "^5.62.0",
"chai": "^4.5.0",
"depcheck": "^1.4.7",
"eslint": "^8.57.1",
"license-compliance": "^3.0.1",
"mocha": "^8.4.0",
"p-event": "^4.2.0",
"prettier": "^3.4.2",
"release-it": "^17.10.0",
"sinon": "^9.2.4",
"ts-node": "^10.9.2",
"typescript": "^5.7.2"
},
"peerDependencies": {
"@aws-sdk/client-sqs": "3.514.0"
},
"mocha": {
"spec": "tests/**/**/*.ts",
"require": "ts-node/register"
},
"prettier": "@figuredev/prettier-config",
"publishConfig": {
"access": "restricted",
"registry": "https://npm.pkg.github.com"
}
}