-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
54 lines (54 loc) · 1.34 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
{
"name": "danger-plugin-eslint-disable-warn",
"description": "this dangerjs plugin decorates your pull-requests when it finds eslint-disable references",
"author": {
"name": "AndreaPontrandolfo",
"email": "[email protected]"
},
"keywords": [
"danger",
"danger-plugin",
"eslint"
],
"version": "0.0.0-development",
"main": "dist/index.js",
"scripts": {
"commit": "git-cz",
"commitmsg": "validate-commit-msg",
"build": "babel src --out-dir dist --ignore *.test.js",
"test": "jest",
"predocs": "rm -rf docs/",
"docs": "esdoc -c .esdoc.json",
"semantic-release": "semantic-release"
},
"license": "MIT",
"engines": {
"node": ">=12.0.0"
},
"devDependencies": {
"babel-cli": "^6.24.1",
"babel-jest": "^20.0.1",
"babel-preset-env": "^1.4.0",
"commitizen": "^2.9.6",
"cz-conventional-changelog": "^2.0.0",
"husky": "^0.13.3",
"jest": "^20.0.1",
"prettier": "^1.3.1",
"semantic-release": "^19.0.5",
"typescript": "^2.3.2",
"typings-tester": "^0.2.2",
"validate-commit-msg": "^2.12.1"
},
"optionalDependencies": {
"esdoc": "^0.5.2"
},
"config": {
"commitizen": {
"path": "cz-conventional-changelog"
}
},
"repository": {
"type": "git",
"url": "https://github.com/AndreaPontrandolfo/dangerjs-plugin.git"
}
}