-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
74 lines (74 loc) · 1.91 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
{
"name": "@pod-point/typescript",
"version": "3.0.0",
"description": "A TypeScript library.",
"main": "lib/index.js",
"types": "lib/index.d.ts",
"author": "Pod Point Software Team <software@pod-point.com>",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/Pod-Point/typescript.git"
},
"bugs": {
"url": "https://github.com/Pod-Point/typescript/issues"
},
"homepage": "https://github.com/Pod-Point/typescript#readme",
"keywords": [
"TypeScript"
],
"scripts": {
"build": "tsc",
"lint": "eslint . --quiet",
"prettier": "prettier . --check",
"typecheck": "tsc --noEmit",
"test": "jest --runInBand",
"test:coverage": "jest --coverage --runInBand --ci",
"prepare": "husky install"
},
"dependencies": {
"@aws-sdk/client-kinesis": "^3.409.0",
"@aws-sdk/client-sns": "^3.409.0",
"axios": "^1.5.0",
"lodash": "^4.17.21"
},
"devDependencies": {
"@types/faker": "^5.5.9",
"@types/jest": "^29.5.4",
"@types/lodash": "^4.14.198",
"@types/node": "^20.6.0",
"@typescript-eslint/eslint-plugin": "^6.6.0",
"@typescript-eslint/parser": "^6.6.0",
"aws-sdk-client-mock": "^3.0.0",
"eslint": "^8.49.0",
"eslint-config-prettier": "^9.0.0",
"eslint-config-standard-with-typescript": "^39.0.0",
"eslint-plugin-import": "^2.28.1",
"eslint-plugin-n": "^16.1.0",
"eslint-plugin-promise": "^6.1.1",
"faker": "^5.5.3",
"jest": "^29.6.4",
"prettier": "^3.0.3",
"ts-jest": "^29.1.1",
"typescript": "^5.2.2",
"husky": "^8.0.0"
},
"jest": {
"collectCoverageFrom": [
"src/**/*.ts",
"!node_modules/**",
"!src/index.ts"
],
"moduleFileExtensions": [
"ts",
"js"
],
"testRegex": "(src/__tests__/.*\\.(test|spec))\\.(js?|ts?)$",
"transform": {
"^.+\\.ts?$": "ts-jest"
}
},
"publishConfig": {
"access": "public"
}
}