-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
91 lines (91 loc) · 1.99 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
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
{
"name": "cap-sync-version",
"version": "3.1.0",
"description": "This CLI syncs the npm package version to the capacitor android and ios projects",
"type": "module",
"exports": "./src/cli.js",
"bin": {
"cap-sync-version": "./src/cli.js"
},
"engines": {
"node": "^14.8.0 || >=16.0.0"
},
"scripts": {
"test": "ava && xo",
"test:watch": "ava --watch",
"xo": "xo",
"start": "./src/cli.js",
"dry-publish": "np --any-branch --preview ",
"deploy": "np --no-publish --any-branch && npm publish",
"deploy-np": "np --any-branch",
"prettier": "prettier --write ."
},
"dependencies": {
"commander": "^11.0.0",
"fs-extra": "^11.1.1",
"java-props": "^2.3.1",
"logdown": "^3.3.1",
"project-version": "^2.0.0",
"read-pkg": "^8.0.0",
"simple-plist": "^1.3.1"
},
"devDependencies": {
"ava": "^5.3.1",
"np": "^8.0.4",
"prettier": "^3.0.0",
"xo": "^0.54.2"
},
"files": [
"src",
"package.json",
"README.md",
"CHANGELOG.md"
],
"keywords": [
"capacitor",
"ionic",
"cli",
"dev-ops",
"build-scripts",
"build"
],
"author": "Benjamin Jesuiter <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/bjesuiter/capacitor-sync-version-cli/issues"
},
"homepage": "https://github.com/bjesuiter/capacitor-sync-version-cli#readme",
"repository": {
"type": "git",
"url": "git+ssh://[email protected]/bjesuiter/capacitor-sync-version-cli.git"
},
"xo": {
"space": false,
"rules": {
"quotes": [
"error",
"single",
{
"allowTemplateLiterals": true
}
],
"prefer-destructuring": [
"error",
{
"array": false,
"object": false
},
{
"enforceForRenamedProperties": false
}
],
"no-trailing-spaces": [
"error",
{
"skipBlankLines": true,
"ignoreComments": true
}
]
}
}
}