-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
98 lines (98 loc) · 2.27 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
{
"name": "danger-plugin-todos",
"description": "A danger-js plugin to list all todos/fixmes/etc added/changed in a PR",
"author": {
"name": "Rohit Gohri",
"email": "[email protected]"
},
"repository": {
"type": "git",
"url": "https://github.com/rohit-gohri/danger-plugin-todos.git"
},
"bugs": {
"url": "https://github.com/rohit-gohri/danger-plugin-todos/issues"
},
"homepage": "https://github.com/rohit-gohri/danger-plugin-todos#readme",
"keywords": [
"danger",
"danger-plugin",
"todo",
"fixme",
"danger-js"
],
"version": "0.0.0-development",
"main": "dist/index.js",
"types": "types/index.d.ts",
"scripts": {
"commit": "git-cz",
"build": "tsc",
"test": "jest",
"predocs": "rm -rf docs/",
"docs": "esdoc -c .esdoc.json",
"prepare": "yarn build",
"prettier-write": "prettier -- --parser typescript --no-semi --trailing-comma es5 --write --print-width 120",
"prettier": "yarn prettier-write -- 'src/**/*.{ts,tsx}'",
"lint": "tslint \"src/**/*.ts\""
},
"license": "MIT",
"engines": {
"node": ">=10.0.0"
},
"devDependencies": {
"@types/jest": "^25.1.3",
"@types/lodash": "^4.14.149",
"@types/node": "^13.7.7",
"commitizen": "^4.0.3",
"cz-conventional-changelog": "^3.1.0",
"danger": "*",
"esdoc": "^1.1.0",
"esdoc-standard-plugin": "^1.0.0",
"husky": "^4.2.3",
"jest": "^25.1.0",
"lint-staged": "^10.0.8",
"prettier": "^1.19.1",
"semantic-release": "^17.0.4",
"ts-jest": "^25.2.1",
"tslint": "^6.0.0",
"typescript": "^3.8.3",
"validate-commit-msg": "^2.14.0"
},
"release": {
"branches": ["main"]
},
"config": {
"commitizen": {
"path": "cz-conventional-changelog"
}
},
"lint-staged": {
"*.@(ts|tsx)": [
"tslint --fix",
"yarn prettier-write --"
]
},
"jest": {
"moduleFileExtensions": [
"ts",
"tsx",
"js"
],
"transform": {
".(ts|tsx)": "ts-jest"
},
"testRegex": "(.test)\\.(ts|tsx)$",
"testPathIgnorePatterns": [
"\\.snap$",
"<rootDir>/node_modules/"
]
},
"dependencies": {
"lodash": "^4.17.15"
},
"husky": {
"hooks": {
"commit-msg": "validate-commit-msg",
"pre-commit": "lint-staged"
}
}
}