-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
36 lines (36 loc) 路 923 Bytes
/
Copy pathpackage.json
File metadata and controls
36 lines (36 loc) 路 923 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
{
"name": "gitlab-restapi",
"version": "1.2.0",
"description": "Integration with GitLab REST API",
"main": "index.js",
"types": "src/types/index.d.ts",
"repository": {
"type": "git",
"url": "git+https://github.com/rosbitskyy/gitlab.git"
},
"keywords": [
"nodejs",
"gitlab",
"rest api"
],
"author": {
"name": "馃嚭馃嚘Rosbitskyy Ruslan",
"email": "rosbitskyy@gmail.com",
"url": "https://github.com/rosbitskyy/"
},
"license": "Apache License Version 2.0, January 2004",
"devDependencies": {
"dotenv": "^16.3.1",
"mocha": "^10.2.0",
"nyc": "^15.1.0",
"typescript": "^5.2.2",
"tsd": "^0.29.0",
"@types/node": "^20.8.10"
},
"scripts": {
"test": "npm run test:tsd && npm run test:mocha",
"test:mocha": "mocha tests/**/*.js",
"test:report": "nyc --reporter=html --reporter=text mocha tests/**/*.js",
"test:tsd": "npx tsd"
}
}