forked from rh-messaging/artemis-plugin-npm
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
28 lines (28 loc) · 904 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
{
"name": "artemis-plugin-npm",
"version": "1.8.0",
"description": "Artemis plugin module for the Hawtio web console",
"main": "dist/artemis-plugin.js",
"scripts": {
"prebuild": "echo 'removing dist' && rm -rf dist/ && echo 'downloading artemis-plugin.war' && mvn clean package && echo 'filtering src/*.js' && mvn resources:resources",
"build": "parcel build --no-content-hash --no-source-maps target/plugin/js/*.js target/plugin/js/**/*.js target/classes/*.js",
"postbuild": "mv dist/bundle.8f8c555c.js $npm_package_main",
"preversion": "yarn build"
},
"devDependencies": {
"parcel": "^1.12.4",
"parcel-plugin-concat": "^0.2.0"
},
"repository": {
"type": "git",
"url": "https://github.com/hawtio/artemis-plugin-npm.git"
},
"license": "Apache-2.0",
"files": [
"dist"
],
"publishConfig": {
"access": "public"
},
"dependencies": {}
}