-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
60 lines (60 loc) · 2.23 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
{
"name": "ezmaster",
"version": "5.3.1",
"description": "Administration of docker applications without any IT skills",
"private": true,
"scripts": {
"insertversion:readme": "sed -i \"s#\\(ezmaster/\\)\\([\\.a-z0-9]\\+\\)\\(/docker-compose\\)#\\1${npm_package_version}$3\\3#g\" *.md",
"insertversion:docker": "sed -i \"s#\\(inistcnrs/ezmaster:\\)\\([\\.a-z0-9]\\+\\)\\(-[a-z]\\+\\)#\\1${npm_package_version}\\3#g\" docker-compose*.yml ezmaster-webdav/README.md",
"insertversion:index": "sed -i \"s#\\(version \\)\\([\\.a-z0-9]\\+\\)#\\1${npm_package_version}#g\" ezmaster-front/src/layout/Footer.js ezmaster-api/public/index.html ezmaster-rp/index.html",
"insertversion:package": "sed -i \"s#^\\( \\\"version\\\": \\)\\(\\\"[\\.a-z0-9]\\+\\\"\\)#\\1\\\"${npm_package_version}\\\"#g\" ezmaster-front/package*.json ezmaster-api/package*.json",
"version": "npm run insertversion:readme && npm run insertversion:docker && npm run insertversion:index && npm run insertversion:package && git add *.md ezmaster-front/src/layout/Footer.js ezmaster-api/public/index.html ezmaster-rp/index.html ezmaster-api/package*.json ezmaster-front/package*.json docker-compose*.yml ezmaster-webdav/README.md",
"postversion": "git push && git push --tags && make publish ",
"postinstall": "cd ezmaster-api/ ; npm i --unsafe-perm ; cd ../ezmaster-front/ ; npm i --unsafe-perm"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"keywords": [
"docker",
"ihm",
"gui"
],
"contributors": [
{
"name": "Stéphane Gully",
"url": "https://github.com/kerphi"
},
{
"name": "Nicolas Thouvenin",
"url": "https://github.com/touv"
},
{
"name": "Nicolas Lamblin",
"url": "https://github.com/nlamblin"
},
{
"name": "François Parmentier",
"url": "https://github.com/parmentf"
}
],
"license": "MIT",
"dependencies": {},
"lint-staged": {
"*.{js,css,md,jsx}": [
"prettier --write",
"git add"
]
},
"devDependencies": {
"eslint": "^5.16.0",
"eslint-config-vue": "^2.0.2",
"eslint-plugin-html": "^5.0.5",
"eslint-plugin-vue": "^5.2.2",
"husky": "^2.4.0",
"lint-staged": "^8.2.0",
"prettier": "^1.18.0"
}
}