-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
79 lines (79 loc) · 2.55 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
{
"name": "@semantic-release/wordpress",
"description": "semantic-release plugin to publish a WordPress plugin or theme",
"version": "0.0.0-development",
"license": "MIT",
"author": "Sibin Grasic <[email protected]> (https://oblak.studio)",
"contributors": [
"Gregor Martynus (https://twitter.com/gr2m)",
"Matt Travi <[email protected]> (https://matt.travi.org/)"
],
"repository": {
"type": "git",
"url": "git+https://github.com/semantic-release/wordpress.git"
},
"bugs": "https://githu.com/semantic-release/wordpress/issues",
"keywords": [],
"scripts": {
"build": "rimraf dist && tsc --project tsconfig.build.json",
"watch": "rimraf dist && tsc --watch",
"build:production": "rimraf dist && tsc --project tsconfig.build.json",
"lint": "eslint lib/*.ts",
"test:setup": "cd ./test/fixtures/dist-test && npm install",
"test": "NODE_OPTIONS='--experimental-vm-modules --no-warnings' jest -i --forceExit",
"test:watch": "NODE_OPTIONS='--experimental-vm-modules --no-warnings' jest --watch -i --forceExit",
"test:cov": "NODE_OPTIONS='--experimental-vm-modules --no-warnings' jest --coverage -i --forceExit",
"semantic-release": "semantic-release"
},
"type": "module",
"engines": {
"node": ">=20.8.1"
},
"main": "dist/index.js",
"types": "dist/index.d.ts",
"dependencies": {
"@semantic-release/error": "^4.0.0",
"class-transformer": "^0.5.1",
"class-transformer-validator": "^0.9.1",
"class-validator": "^0.14.0",
"execa": "^8.0.1",
"fs-extra": "^11.1.1",
"glob": "^10.3.3",
"read-pkg": "^9.0.0",
"reflect-metadata": "^0.2.0",
"replace-in-file": "^7.0.1"
},
"devDependencies": {
"@babel/core": "7.24.7",
"@babel/preset-env": "7.24.7",
"@types/adm-zip": "^0.5.5",
"@types/fs-extra": "11.0.4",
"@types/jest": "29.5.12",
"@types/node": "20.14.7",
"@types/semantic-release__error": "3.0.3",
"@types/signale": "1.4.7",
"@types/sinon": "17.0.3",
"@typescript-eslint/eslint-plugin": "6.21.0",
"@typescript-eslint/parser": "6.21.0",
"adm-zip": "^0.5.16",
"babel-jest": "29.7.0",
"eslint": "8.56.0",
"eslint-config-prettier": "9.1.0",
"eslint-plugin-prettier": "5.1.3",
"jest": "29.7.0",
"prettier": "3.3.3",
"rimraf": "5.0.5",
"semantic-release": "24.1.1",
"signale": "1.4.0",
"sinon": "17.0.1",
"ts-jest": "29.1.5",
"typescript": "5.3.3"
},
"peerDependencies": {
"semantic-release": ">=20.1.0"
},
"publishConfig": {
"access": "public",
"provenance": true
}
}