forked from jdalrymple/gitbeaker
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
105 lines (105 loc) · 3.18 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
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
{
"name": "gitlab",
"description": "Full NodeJS implementation of the GitLab API. Supports Promises, Async/Await.",
"version": "11.4.0",
"author": {
"name": "Justin Dalrymple",
"email": "justin.s.dalrymple@gmail.com"
},
"bin": {
"gitlab": "./dist/cli.js"
},
"browser": "dist/index.browser.js",
"bugs": {
"url": "https://github.com/jdalrymple/node-gitlab/issues"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
},
"dependencies": {
"change-case": "^3.1.0",
"dotenv": "^8.2.0",
"form-data": "^2.5.1",
"ky": "^0.15.0",
"ky-universal": "^0.3.0",
"li": "^1.3.0",
"query-string": "^6.8.3",
"xcase": "^2.0.1",
"yargs": "^14.2.0"
},
"devDependencies": {
"eslint-plugin-jest": "^22.20.1",
"@semantic-release/changelog": "^3.0.4",
"@semantic-release/git": "^7.0.16",
"@semantic-release/npm": "^5.2.0",
"@types/jest": "^24.0.19",
"@typescript-eslint/eslint-plugin": "^2.5.0",
"@typescript-eslint/parser": "^2.5.0",
"codecov": "^3.6.1",
"cz-conventional-changelog": "^3.0.2",
"eslint": "^6.6.0",
"eslint-config-airbnb-base": "^14.0.0",
"eslint-config-prettier": "^6.5.0",
"eslint-plugin-import": "^2.18.2",
"eslint-plugin-prettier": "^3.1.1",
"esm": "^3.2.25",
"fs-extra": "^8.1.0",
"get-param-names": "github:jdalrymple/get-param-names#1-improve-functionality",
"husky": "^4.0.0-beta.1",
"jest": "24.9.0",
"jest-extended": "^0.11.2",
"lint-staged": "^9.4.2",
"prettier": "^1.18.2",
"rollup": "^1.25.2",
"rollup-plugin-commonjs": "^10.1.0",
"rollup-plugin-json": "^4.0.0",
"rollup-plugin-node-builtins": "^2.1.2",
"rollup-plugin-node-resolve": "^5.2.0",
"rollup-plugin-replace": "^2.2.0",
"rollup-plugin-terser": "^5.1.2",
"rollup-plugin-typescript2": "^0.24.3",
"semantic-release": "^15.13.27",
"ts-jest": "24.1.0",
"typescript": "3.6.4"
},
"engines": {
"node": ">=10.0.0"
},
"files": [
"dist"
],
"homepage": "https://github.com/jdalrymple/node-gitlab#readme",
"keywords": [
"api",
"browser",
"cli",
"es5",
"es6",
"gitlab",
"ky"
],
"license": "MIT",
"main": "dist/index.js",
"module": "dist/index.es.js",
"repository": {
"type": "git",
"url": "https://github.com/jdalrymple/node-gitlab"
},
"scripts": {
"build": "npm run build:cli && tsc && rollup -c && mv dist/src dist/types",
"build:cli": "tsc -p tsconfig.cli.json && node -r esm temp/bin/generate",
"commit": "npx git-cz",
"coverage": "codecov",
"lint": "prettier --check '{src,test}/**/*.ts' && eslint '{src,test}/**/*/!(generate).ts'",
"lint:doc": "prettier --check './*.json' './*.yml' './*.js'",
"lint:doc:fix": "prettier --write './*.json' './*.yml' './*.md' './*.js'",
"lint:fix": "prettier --write '{src,test}/**/*.ts' && eslint '{src,test}/**/*/!(generate).ts' --fix",
"prepublishOnly": "npm run build",
"release": "semantic-release",
"test:integration": "jest test/integration -c=jest.config.json --detectOpenHandles",
"test:unit": "jest test/unit --debug -c=jest.config.json"
},
"types": "dist/types/core/index.d.ts"
}