forked from gligoran/cordova-set-version
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
107 lines (107 loc) · 2.45 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
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
{
"author": "Goran Gligorin <goran@gligorin.com> (http://gorangligorin.com/)",
"bin": {
"cordova-set-version": "./cli.js"
},
"bugs": {
"url": "https://github.com/gligoran/cordova-set-version/issues"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
},
"dependencies": {
"meow": "^10.0.0",
"read-pkg": "^7.1.0",
"xml2js": "^0.4.23"
},
"description": "CLI and JavaScript API for setting the version in Apache Cordova config.xml",
"devDependencies": {
"cross-env": "^7.0.3",
"cz-conventional-changelog": "3.3.0",
"fs-extra": "10.1.0",
"husky": "8.0.1",
"jest": "28.1.3",
"jest-extended": "3.0.2",
"npm-check": "6.0.1",
"rimraf": "^3.0.2",
"semantic-release": "19.0.5",
"xo": "0.52.3"
},
"exports": "./index.js",
"files": [
"index.js",
"cli.js",
"README.md"
],
"homepage": "https://github.com/gligoran/cordova-set-version#readme",
"jest": {
"collectCoverage": true,
"coverageDirectory": "coverage",
"coverageThreshold": {
"global": {
"branches": 100,
"functions": 100,
"lines": 100,
"statements": 100
}
},
"setupFilesAfterEnv": [
"jest-extended/all"
],
"testEnvironment": "node",
"transform": {},
"watchPathIgnorePatterns": [
"<rootDir>/test/config.xml",
"<rootDir>/test/config.provided.xml",
"<rootDir>/test/package.json"
]
},
"keywords": [
"apache",
"cordova",
"version"
],
"license": "ISC",
"name": "cordova-set-version",
"repository": {
"type": "git",
"url": "https://github.com/gligoran/cordova-set-version.git"
},
"scripts": {
"clean": "rimraf coverage",
"lint": "xo",
"lint:fix": "npm run lint -- --fix",
"pretest": "npm run lint",
"test": "cross-env NODE_OPTIONS=--experimental-vm-modules jest --run-in-band",
"test:watch": "npm test -- --watch",
"wipe": "npm run clean && rimraf node_modules"
},
"type": "module",
"version": "0.0.0",
"volta": {
"node": "16.17.0",
"npm": "8.19.2"
},
"xo": {
"envs": [
"es2021",
"jest",
"node"
],
"prettier": true,
"rules": {
"capitalized-comments": [
"error",
"never",
{
"ignoreConsecutiveComments": true,
"ignoreInlineComments": true,
"ignorePattern": "pragma|ignore|prettier-ignore"
}
]
},
"space": true
}
}