-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
49 lines (49 loc) · 1.15 KB
/
package.json
File metadata and controls
49 lines (49 loc) · 1.15 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
49
{
"name": "codio-api-js",
"version": "0.18.0",
"description": "JS client to Codio API",
"repository": {
"type": "git",
"url": "https://github.com/codio/codio-api-js"
},
"author": "Max Kraev <maxim.kraev@gmail.com>",
"license": "MIT",
"devDependencies": {
"@types/bent": "^7.3.2",
"@types/lodash": "^4.14.168",
"@types/object-hash": "^2.1.1",
"@types/tar": "^4.0.4",
"@types/uuid": "^8.3.1",
"@typescript-eslint/eslint-plugin": "^5.22",
"@typescript-eslint/parser": "^5.00",
"dotenv": "^11.0.0",
"eslint": "^7.30.0",
"typescript": "^4.3.5"
},
"dependencies": {
"bent": "^7.3.12",
"form-data": "^4.0.0",
"glob-promise": "^4.2.0",
"https": "^1.0.0",
"lodash": "^4.17.21",
"object-hash": "^2.2.0",
"querystring": "^0.2.1",
"recursive-copy": "^2.0.11",
"simple-zstd": "^1.3.1",
"tar": "^6.1.0",
"ts-node": "^10.9.1",
"uuid": "^8.3.2",
"yaml": "^1.10.2"
},
"scripts": {
"build": "tsc",
"watch": "tsc -w",
"lint": "eslint src"
},
"main": "./lib/index.js",
"module": "./lib/index.js",
"files": [
"lib/"
],
"types": "./lib/index.d.ts"
}