-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
40 lines (40 loc) · 1.11 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
{
"name": "wp-plugin-template",
"description": "WP Plugin Template with Unit Tests and docker env",
"author": "Monogramm",
"license": "AGPL",
"version": "0.1.0",
"homepage": "https://github.com/Monogramm/wp-plugin-template",
"main": "Gruntfile.js",
"devDependencies": {
"@wordpress/eslint-plugin": "^7.4.0",
"eslint": "^7.7.0",
"gitmoji-changelog": "^2.1.0",
"grunt": "^1.3.0",
"grunt-contrib-cssmin": "^4.0.0",
"grunt-contrib-less": "^2.0.0",
"grunt-contrib-watch": "^1.1.0",
"grunt-terser": "^2.0.0",
"grunt-wp-i18n": "^1.0.0",
"prettier": "^2.2.1",
"remark-cli": "^7.0.1",
"remark-lint": "^6.0.5",
"remark-lint-list-item-indent": "^1.0.4",
"remark-preset-lint-recommended": "^3.0.3",
"terser": "^5.6.1"
},
"scripts": {
"lint-md": "remark .",
"gitmoji-changelog": "gitmoji-changelog --preset generic && remark CHANGELOG.md -o",
"lint-js": "eslint .",
"start": "grunt default",
"i18n": "grunt i18n"
},
"remarkConfig": {
"plugins": [
"remark-preset-lint-recommended",
"lint-list-item-indent"
]
},
"snyk": true
}