-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
54 lines (54 loc) · 1.29 KB
/
Copy pathpackage.json
File metadata and controls
54 lines (54 loc) · 1.29 KB
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
{
"name": "version-auto-patch",
"description": "Automatically patches the version number in specified package.json files",
"version": "1.4.0",
"type": "commonjs",
"main": "./index.js",
"module": "./esm/index.mjs",
"exports": {
".": {
"import": "./esm/index.mjs",
"require": "./index.js"
}
},
"scripts": {
"version-auto-patch": "node index.js",
"test": "node --experimental-vm-modules node_modules/jest/bin/jest.js",
"lint": "eslint index.js",
"lint:fix": "eslint index.js --fix"
},
"bin": {
"version-auto-patch": "index.js"
},
"keywords": [
"npm",
"version",
"utilitity",
"webpack",
"plugin",
"versioning"
],
"author": "Ville Perkkio",
"license": "MIT",
"homepage": "https://github.com/vilu85/version-auto-patch",
"devDependencies": {
"@eslint/eslintrc": "^3.3.4",
"@eslint/js": "^10.0.1",
"baseline-browser-mapping": "^2.10.0",
"eslint": "^10.0.2",
"eslint-plugin-jest": "^29.0.1",
"globals": "^17.0.0",
"jest": "^30.0.2",
"prettier": "^3.3.3"
},
"directories": {
"test": "test"
},
"repository": {
"type": "git",
"url": "git+https://github.com/vilu85/version-auto-patch.git"
},
"bugs": {
"url": "https://github.com/vilu85/version-auto-patch/issues"
}
}