-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
86 lines (86 loc) · 2.04 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
{
"name": "generator-danger-plugin",
"version": "0.0.0-development",
"description": "Generate a Danger plugin",
"main": "generators/app/index.js",
"files": [
"generators",
".babelrc",
".eslintignore",
"yarn.lock"
],
"engines": {
"node": ">=10.0.0"
},
"scripts": {
"commit": "git-cz",
"test": "jest",
"build": "babel src -d generators --ignore test.js,__snapshots__ --copy-files",
"prepare": "yarn build",
"semantic-release": "semantic-release"
},
"keywords": [
"yeoman",
"yeoman-generator",
"generator",
"boilerplate",
"danger"
],
"author": "Macklin Underdown <[email protected]>",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/danger/generator-danger-plugin.git"
},
"devDependencies": {
"@babel/cli": "^7.0.0",
"@babel/core": "^7.0.0",
"@babel/plugin-proposal-class-properties": "^7.0.0",
"@babel/preset-env": "^7.0.0",
"babel-jest": "^25.1.0",
"babel-plugin-add-module-exports": "^0.2.1",
"commitizen": "^4.0.3",
"cz-conventional-changelog": "^3.1.0",
"husky": "^4.2.3",
"jest": "^25.1.0",
"lint-staged": "^10.0.7",
"prettier": "^1.19.1",
"semantic-release": "^17.0.3",
"validate-commit-msg": "^2.14.0",
"yeoman-assert": "^3.1.1",
"yeoman-test": "^2.1.0"
},
"dependencies": {
"chalk": "^1.1.3",
"generator-node": "^2.1.0",
"github-url-from-username-repo": "^1.0.2",
"gulp-rename": "1.2.2",
"inquirer-npm-name": "^2.0.0",
"lodash": "^4.17.15",
"mkdirp": "^0.5.1",
"yeoman-generator": "^4.5.0"
},
"jest": {
"testPathIgnorePatterns": [
"/node_modules/",
"generators",
"<rootDir>/src/app/templates"
]
},
"config": {
"commitizen": {
"path": "cz-conventional-changelog"
}
},
"husky": {
"hooks": {
"commit-msg": "validate-commit-msg",
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.js": [
"prettier --single-quote --trailing-comma=es5 --no-semi --write"
]
}
}