forked from jdalrymple/gitbeaker
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
49 lines (49 loc) · 1.65 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
{
"bugs": {
"url": "https://github.com/jdalrymple/gitbeaker/issues"
},
"repository": "github:jdalrymple/gitbeaker",
"devDependencies": {
"@auto-it/all-contributors": "^9.53.1",
"@auto-it/core": "^9.53.1",
"@auto-it/first-time-contributor": "^9.53.1",
"@auto-it/released": "^9.53.1",
"@types/jest": "^26.0.14",
"@typescript-eslint/eslint-plugin": "^4.2.0",
"@typescript-eslint/parser": "^4.2.0",
"all-contributors-cli": "^6.17.4",
"auto": "^9.53.1",
"codecov": "^3.7.2",
"eslint": "^7.10.0",
"eslint-config-airbnb-base": "^14.2.0",
"eslint-config-prettier": "^6.12.0",
"eslint-plugin-import": "^2.22.0",
"eslint-plugin-jest": "^24.0.2",
"eslint-plugin-prettier": "^3.1.4",
"got": "^11.7.0",
"husky": "^4.3.0",
"jest": "^26.4.2",
"jest-extended": "^0.11.5",
"lerna": "^3.22.1",
"lint-staged": "^10.4.0",
"prettier": "^2.1.2",
"ts-jest": "^26.4.0",
"typescript": "^4.0.3"
},
"private": true,
"workspaces": [
"packages/*"
],
"scripts": {
"build": "lerna run build",
"lint": "prettier --check 'packages/**/{src,test}/**/*.ts' && eslint 'packages/**/{src,test}/**/*/*.ts'",
"lint:doc": "prettier --check './*.json' './*.yml' './*.js'",
"lint:doc:fix": "prettier --write './*.json' './*.yml' './*.md' './*.js'",
"lint:fix": "prettier --write 'packages/**/{src,test}/**/*.ts' && eslint 'packages/**/{src,test}/**/*/*.ts' --fix",
"test:integration": "jest test/integration",
"test:unit": "jest test/unit",
"release": "auto shipit --verbose --verbose"
},
"author": "Justin Dalrymple <justin.s.dalrymple@gmail.com>",
"name": "gitbeaker"
}