-
-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpackage.json
More file actions
29 lines (29 loc) · 757 Bytes
/
package.json
File metadata and controls
29 lines (29 loc) · 757 Bytes
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
{
"private": true,
"repository": "git@github.com:nelson6e65/php_nml.git",
"license": "MIT",
"author": "Nelson Martell <nelson6e65@gmail.com>",
"main": "index.js",
"scripts": {
"prepare": "husky install",
"cs:fix": "prettier --write .",
"cs:lint": "prettier --check .",
"docs:build": "vuepress build docs",
"docs:dev": "vuepress dev docs"
},
"lint-staged": {
"*.php": "composer cs:fix-filtered"
},
"dependencies": {
"@vuepress/plugin-google-analytics": "^1.9",
"vuepress": "^1.9"
},
"devDependencies": {
"@prettier/plugin-xml": "^1.0.1",
"husky": "^5.1.3",
"lint-staged": "^10.5.4",
"prettier": "^2.3.1",
"prettier-plugin-packagejson": "^2.2.11",
"pretty-quick": "^3.1.1"
}
}