-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
53 lines (53 loc) · 1.25 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
{
"name": "@rstudio/rsconnect-ts",
"version": "0.8.0",
"description": "TypeScript client library for the Posit Connect API",
"author": "RStudio Developers <[email protected]>",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/rstudio/rsconnect-ts.git"
},
"main": "lib/main.js",
"types": "lib/main.d.ts",
"directories": {
"lib": "lib",
"test": "__tests__"
},
"files": [
"lib"
],
"publishConfig": {
"access": "public"
},
"scripts": {
"build": "tsc",
"lint": "ts-standard --fix ./src/*.ts ./__tests__/*.ts",
"test": "jest"
},
"devDependencies": {
"@tsconfig/node16": "^1.0.3",
"@types/jest": "^29.5.12",
"@types/node": "^14.18.36",
"babel-jest": "^29.7.0",
"jest": "^29.7.0",
"ts-jest": "^29.1.5",
"ts-node": "^9.1.1",
"ts-standard": "^9.0.0",
"typescript": "^4.9.5"
},
"dependencies": {
"@types/lodash": "^4.17.5",
"@types/qs": "^6.9.15",
"@types/tar": "^6.1.13",
"@types/tmp": "^0.2.6",
"@types/tough-cookie": "^4.0.5",
"tough-cookie": "^4.1.4",
"axios": "^1.7.2",
"axios-cookiejar-support": "^5.0.2",
"lodash": "^4.17.21",
"qs": "^6.12.1",
"tar": "^6.2.1",
"tmp": "^0.2.3"
}
}