-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
49 lines (49 loc) · 1.17 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
{
"name": "@nodesecure/gitlab",
"version": "2.0.0",
"description": "Download and extract gitlab repository",
"exports": "./dist/index.js",
"types": "./dist/index.d.ts",
"type": "module",
"scripts": {
"build": "tsc",
"prepublishOnly": "npm run build",
"lint": "eslint src",
"test": "glob -c \"tsx --test\" \"./test/**/*.spec.ts\"",
"coverage": "c8 -r html npm test"
},
"repository": {
"type": "git",
"url": "git+https://github.com/NodeSecure/gitlab.git"
},
"keywords": [
"NodeSecure",
"gitlab"
],
"files": [
"dist"
],
"author": "GENTILHOMME Thomas <gentilhomme.thomas@gmail.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/NodeSecure/gitlab/issues"
},
"homepage": "https://github.com/NodeSecure/gitlab#readme",
"dependencies": {
"@myunisoft/httpie": "^5.0.0",
"tar-fs": "^3.0.6"
},
"devDependencies": {
"@openally/config.eslint": "^1.0.0",
"@openally/config.typescript": "^1.0.3",
"@slimio/is": "^2.0.0",
"@types/node": "^22.3.0",
"@types/tar-fs": "^2.0.4",
"c8": "^10.1.2",
"tsx": "^4.17.0",
"typescript": "^5.5.4"
},
"engines": {
"node": ">=20"
}
}