-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
42 lines (42 loc) · 1.02 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
{
"name": "capacitor-sync-version",
"version": "1.0.6",
"description": "Syncing version from package.json to target platform in the capacitor projects.",
"bin": {
"capacitor-sync-version": "dist/index.js"
},
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"dist"
],
"scripts": {
"prebuild": "rimraf dist # rm -rf dist",
"build": "tsc",
"postbuild": "chmod +x dist/index.js",
"prepare": "npm run build"
},
"dependencies": {
"await-to-js": "^3.0.0",
"chalk": "^4.1.1",
"commander": "^8.0.0",
"load-json-file": "^6.2.0",
"plist": "^3.0.4",
"properties-reader": "^2.2.0",
"semver": "^7.3.5"
},
"devDependencies": {
"@types/node": "14",
"@types/plist": "^3.0.2",
"@types/properties-reader": "^2.1.1",
"@types/semver": "^7.3.7",
"rimraf": "^3.0.2",
"ts-node": "^10.0.0",
"typescript": "^4.3.4"
},
"repository": {
"type": "git",
"url": "https://github.com/arzyu/capacitor-sync-version"
},
"license": "MIT"
}