This repository was archived by the owner on Mar 14, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
74 lines (74 loc) · 2.22 KB
/
package.json
File metadata and controls
74 lines (74 loc) · 2.22 KB
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
{
"name": "@parcellab/danger-plugin",
"version": "0.0.34",
"description": "Set of Danger rules used in parcelLab PRs",
"author": "engineering@parcellab.com",
"repository": {
"type": "git",
"url": "https://github.com/parcellab/danger-plugin-js.git"
},
"bugs": {
"url": "https://github.com/parcellab/danger-plugin-js/issues"
},
"homepage": "https://github.com/parcelLab/danger-plugin-js#readme",
"keywords": [
"danger",
"danger-plugin",
"parcellab"
],
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"build": "tsc",
"commitlint": "commitlint -x @commitlint/config-conventional --edit",
"format": "prettier --write --ignore-unknown .",
"lint:commit": "commitlint -x @commitlint/config-conventional --edit",
"lint:eslint": "eslint .",
"lint:prettier": "prettier --check --ignore-unknown .",
"lint:staged": "lint-staged",
"lint:types": "tsc --noEmit",
"lint": "npm run lint:types && npm run lint:eslint && npm run lint:prettier",
"prepare": "test \"$NODE_ENV\" = production || is-ci || husky install",
"test": "jest --coverage"
},
"license": "MIT",
"engines": {
"node": ">=v16.17.0"
},
"dependencies": {
"@commitlint/config-conventional": "^17.2.0",
"@commitlint/lint": "^17.2.0",
"@commitlint/types": "^17.0.0"
},
"peerDependencies": {
"danger": ">= 11.2.0"
},
"devDependencies": {
"@commitlint/cli": "^17.2.0",
"@parcellab/danger-plugin": "*",
"@parcellab/eslint-config": "^0.4.0",
"@types/is-ci": "^3.0.0",
"@types/jest": "^29.2.3",
"@typescript-eslint/eslint-plugin": "^5.43.0",
"@typescript-eslint/parser": "^5.43.0",
"danger": "^11.2.0",
"eslint": "^8.27.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-jest": "^27.1.5",
"eslint-plugin-promise": "^6.1.1",
"eslint-plugin-unicorn": "^44.0.2",
"husky": "^8.0.2",
"is-ci": "^3.0.1",
"jest": "^29.3.1",
"jest-environment-node": "^29.3.1",
"lint-staged": "^13.0.3",
"prettier": "^2.7.1",
"ts-jest": "^29.0.3",
"typescript": "^4.9.3"
},
"lint-staged": {
"*": "prettier --ignore-unknown --write",
"*.{js,jsx,ts,tsx}": "eslint"
}
}