-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
33 lines (33 loc) · 1.17 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
{
"name": "acms-google-analytics4",
"version": "1.1.2",
"description": "Google Analytics4(GA4)と連携するための拡張アプリです。",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"package": "npm run setup && npm run build:app",
"build:app": "node ./tools/build.js",
"version:sync": "node ./tools/version.js",
"release:commit": "node ./tools/commit.js",
"release:patch": "npm version patch --no-git-tag-version && npm run version:sync && npm run package && npm run release:commit",
"release:minor": "npm version minor --no-git-tag-version && npm run version:sync && npm run package && npm run release:commit",
"release:major": "npm version mejor --no-git-tag-version && npm run version:sync && npm run package && npm run release:commit",
"setup": "node ./tools/setup.js",
"prepare": "husky install"
},
"author": "com.appleple",
"license": "ISC",
"devDependencies": {
"archiver": "^5.3.0",
"co": "^4.6.0",
"fs-extra": "^10.0.0",
"node-cmd": "^4.0.0",
"husky": "^8.0.0"
},
"lint-staged": {
"*.php": [
"composer lint",
"composer format"
]
}
}