forked from jdalrymple/gitbeaker
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
93 lines (93 loc) · 2.55 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
{
"name": "gitlab",
"version": "10.0.0",
"description": "Full NodeJS implementation of the GitLab API. Supports Promises, Async/Await.",
"keywords": [
"api",
"browser",
"es5",
"es6",
"gitlab",
"ky"
],
"homepage": "https://github.com/jdalrymple/node-gitlab#readme",
"bugs": {
"url": "https://github.com/jdalrymple/node-gitlab/issues"
},
"repository": {
"type": "git",
"url": "https://github.com/jdalrymple/node-gitlab"
},
"license": "MIT",
"author": {
"name": "Justin Dalrymple",
"email": "[email protected]"
},
"files": [
"dist"
],
"main": "dist/index.js",
"module": "dist/index.es.js",
"browser": "dist/index.browser.js",
"types": "dist/index.d.ts",
"scripts": {
"build": "tsc && rollup -c",
"commit": "npx git-cz",
"coverage": "codecov",
"lint": "tslint -p . -t stylish",
"lint:doc:fix": "prettier --write './*.json' './*.yml' './*.md'",
"lint:fix": "npm run lint -- --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"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
},
"dependencies": {
"form-data": "^2.3.3",
"humps": "^2.0.1",
"ky": "^0.11.2",
"ky-universal": "^0.2.1",
"li": "^1.3.0",
"query-string": "^6.8.1",
"randomstring": "^1.1.5",
"universal-url": "^2.0.0"
},
"devDependencies": {
"@semantic-release/changelog": "^3.0.2",
"@semantic-release/git": "^7.0.12",
"@semantic-release/npm": "^5.1.12",
"@types/form-data": "^2.2.1",
"@types/humps": "^1.1.2",
"@types/jest": "^24.0.15",
"codecov": "^3.5.0",
"cz-conventional-changelog": "^3.0.0",
"husky": "^3.0.0",
"jest": "^24.8.0",
"jest-extended": "^0.11.1",
"jest-tap-reporter": "^1.9.0",
"lint-staged": "^9.0.0",
"prettier": "^1.17.1",
"rollup": "^1.15.6",
"rollup-plugin-commonjs": "^10.0.0",
"rollup-plugin-json": "^4.0.0",
"rollup-plugin-node-builtins": "^2.1.2",
"rollup-plugin-node-globals": "^1.4.0",
"rollup-plugin-node-resolve": "^5.1.0",
"rollup-plugin-terser": "^5.0.0",
"rollup-plugin-typescript2": "^0.22.0",
"semantic-release": "^15.13.17",
"ts-jest": "^24.0.2",
"tslint": "^5.16.0",
"tslint-config-airbnb": "^5.11.1",
"tslint-config-prettier": "^1.18.0",
"typescript": "^3.5.2"
},
"engines": {
"node": ">=8.9.0"
}
}