-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
48 lines (48 loc) · 1.32 KB
/
package.json
File metadata and controls
48 lines (48 loc) · 1.32 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
48
{
"name": "@sil-org/pipedream-utils",
"type": "module",
"version": "0.4.2",
"description": "Utilities to be used in Pipedream as NPM dependencies",
"main": "index.js",
"types": "index.d.ts",
"files": [
"index.d.ts",
"utils",
"!utils/*.test.js"
],
"scripts": {
"test": "node --test",
"lint": "npx eslint .",
"type-check": "tsc --noEmit",
"format": "prettier --write \"**/*.js\"",
"format-check": "prettier --check \"**/*.js\"",
"generate-types": "find . -name \"*.d.ts\" -not -path \"./node_modules/*\" -delete && tsc --allowJs --declaration --emitDeclarationOnly --outDir ."
},
"repository": {
"type": "git",
"url": "git+https://github.com/sil-org/pipedream-utils.git"
},
"keywords": [
"pipedream"
],
"author": "SIL Global",
"license": "MIT",
"bugs": {
"url": "https://github.com/sil-org/pipedream-utils/issues"
},
"homepage": "https://github.com/sil-org/pipedream-utils#readme",
"dependencies": {
"netsuite-api-client": "^1.0.3",
"ssh2-sftp-client": "^12.1.1"
},
"devDependencies": {
"@eslint/js": "^9.39.1",
"@types/node": "^25.5.2",
"@typescript-eslint/eslint-plugin": "^8.58.0",
"@typescript-eslint/parser": "^8.58.0",
"eslint": "^9.39.1",
"globals": "^16.5.0",
"prettier": "^3.8.1",
"typescript": "^5.9.3"
}
}