forked from jdalrymple/gitbeaker
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
83 lines (83 loc) · 2.54 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
{
"name": "gitlab",
"version": "4.5.0",
"description": "Full NodeJS implementation of the GitLab API. Supports Promises, Async/Await.",
"main": "dist/latest/index.js",
"engines": {
"node": ">=8.9.0"
},
"scripts": {
"prepush": "npm run lint",
"commit": "npx git-cz",
"build:clean": "rimraf -rf dist && mkdirp dist",
"build:es6": "tsc -p tsconfig.dist.json",
"build:es5": "tsc -p tsconfig-es5.dist.json",
"build": "npm run build:clean && npm run build:es6 && npm run build:es5",
"lint": "tslint 'src/**/*.{ts,tsx}' --format stylish --project tsconfig.json",
"test:bundles": "jest test/tests/bundles",
"test:infrastructure": "jest test/tests/infrastructure",
"test:services": "jest test/tests/services",
"test": "jest --debug --runInBand && codecov",
"test-with-token": "PERSONAL_ACCESS_TOKEN=$(docker exec -it gitlab bash -lc 'printf \"%q\" \"${PERSONAL_ACCESS_TOKEN}\"') GITLAB_URL=$(docker exec -it gitlab bash -lc 'printf \"%q\" \"${GITLAB_URL}\"') npm run test",
"prepublishOnly": "npm run build",
"semantic-release": "semantic-release"
},
"repository": {
"type": "git",
"url": "https://github.com/jdalrymple/node-gitlab"
},
"keywords": [
"gitlab",
"api",
"es6",
"es5",
"request"
],
"bugs": {
"url": "https://github.com/jdalrymple/node-gitlab/issues"
},
"author": "Justin Dalrymple <[email protected]>",
"license": "MIT",
"readmeFilename": "README.md",
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
},
"files": [
"dist"
],
"devDependencies": {
"@semantic-release/changelog": "^3.0.1",
"@semantic-release/git": "^7.0.5",
"@semantic-release/npm": "^5.0.5",
"@types/humps": "^1.1.2",
"@types/jest": "^24.0.9",
"@types/parse-link-header": "^1.0.0",
"@types/qs": "^6.5.1",
"@types/request-promise": "^4.1.42",
"@types/url-join": "^4.0.0",
"@types/util.promisify": "^1.0.0",
"codecov": "^3.1.0",
"cz-conventional-changelog": "^2.1.0",
"husky": "^1.1.3",
"jest": "^24.1.0",
"jest-extended": "^0.11.0",
"jest-tap-reporter": "^1.9.0",
"semantic-release": "^15.10.7",
"ts-jest": "^24.0.0",
"tslint": "^5.11.0",
"tslint-config-airbnb": "^5.11.0",
"typescript": "^3.1.6"
},
"dependencies": {
"humps": "^2.0.1",
"parse-link-header": "^1.0.1",
"qs": "^6.5.2",
"request": "^2.88.0",
"request-promise": "^4.2.2",
"request-promise-core": "^1.1.1",
"url-join": "^4.0.0",
"xhr": "^2.5.0"
}
}