-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
33 lines (33 loc) · 976 Bytes
/
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
{
"name": "admin-bar-publish",
"version": "1.0.0",
"description": "Adds a button to the WordPress Admin bar to publish a post from the frontend",
"main": "admin-bar-publish.js",
"scripts": {
"test": "jest",
"build": "NODE_ENV=production webpack",
"pack": "cp -R css js *.php *.txt LICENSE $1"
},
"author": "Elio Rivero",
"license": "GPL-2.0-or-later",
"devDependencies": {
"@babel/core": "^7.25.2",
"@babel/preset-env": "^7.25.4",
"@babel/preset-typescript": "^7.24.7",
"babel-jest": "^29.7.0",
"babel-loader": "^9.2.1",
"css-loader": "^7.1.2",
"css-minimizer-webpack-plugin": "^7.0.0",
"jest": "^29.7.0",
"jsdom": "^25.0.0",
"mini-css-extract-plugin": "^2.9.1",
"sass": "^1.78.0",
"sass-loader": "^16.0.1",
"source-map-loader": "^5.0.0",
"terser-webpack-plugin": "^5.3.10",
"ts-loader": "^9.5.1",
"typescript": "^5.6.2",
"webpack": "^5.94.0",
"webpack-cli": "^5.1.4"
}
}