-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
41 lines (41 loc) · 912 Bytes
/
package.json
File metadata and controls
41 lines (41 loc) · 912 Bytes
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
{
"name": "source-function-template",
"repository": {
"type": "git",
"url": "https://github.com/segment-services-eng/source-function-template"
},
"license": "ISC",
"engineStrict": true,
"engines": {
"node": "22"
},
"lint-staged": {
"**/*.js": [
"eslint --fix"
]
},
"dependencies": {
"btoa": "^1.2.1",
"fetch-retry": "^5.0.4",
"moment-timezone": "^0.5.31",
"node-fetch": "^2.6.0"
},
"devDependencies": {
"eslint": "^8.57.1",
"eslint-config-prettier": "^9.1.2",
"eslint-formatter-table": "^7.32.1",
"eslint-plugin-jest": "^27.9.0",
"eslint-plugin-prettier": "^5.5.5",
"husky": "^9.1.7",
"jest": "^30.2.0",
"jest-fetch-mock": "^3.0.3",
"lint-staged": "^16.2.7",
"prettier": "^3.8.0",
"prettier-eslint": "^16.4.2",
"semver": "^7.7.3"
},
"scripts": {
"test": "jest",
"prepare": "husky"
}
}