@pega/constellationjs 0.242.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/LICENSE +167 -0
- package/README.md +54 -0
- package/SECURITY.md +10 -0
- package/dist/ConstellationJS Engine License.pdf +0 -0
- package/dist/ConstellationJS Engine License.txt +167 -0
- package/dist/README.md +54 -0
- package/dist/bootstrap-shell.js +1 -0
- package/dist/bootstrap-shell.js.br +0 -0
- package/dist/bootstrap-shell.js.gz +0 -0
- package/dist/constellation-core.f7105d1f.js +2 -0
- package/dist/constellation-core.f7105d1f.js.LICENSE.txt +124 -0
- package/dist/constellation-core.f7105d1f.js.br +0 -0
- package/dist/constellation-core.f7105d1f.js.gz +0 -0
- package/dist/constellation-core.f7105d1f.js.map +1 -0
- package/dist/lib_asset.json +7 -0
- package/package.json +30 -0
package/package.json
ADDED
|
@@ -0,0 +1,30 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@pega/constellationjs",
|
|
3
|
+
"version": "0.242.1",
|
|
4
|
+
"description": "Get ConstellationJS Engine files for given version",
|
|
5
|
+
"main": "index.js",
|
|
6
|
+
"scripts": {
|
|
7
|
+
"build": "node rimraf-standalone.js ./dist && webpack --mode production --env",
|
|
8
|
+
"build:ci": "npm run clean && npm install && npm run build",
|
|
9
|
+
"clean": "node rimraf-standalone.js ./node_modules",
|
|
10
|
+
"test": "test-constJS"
|
|
11
|
+
},
|
|
12
|
+
"_filesComment": "During packing, npm ignores everything NOT in the files list",
|
|
13
|
+
"files": [
|
|
14
|
+
"dist",
|
|
15
|
+
"LICENSE",
|
|
16
|
+
"SECURITY.md"
|
|
17
|
+
],
|
|
18
|
+
"keywords": [
|
|
19
|
+
"ConstellationJS"
|
|
20
|
+
],
|
|
21
|
+
"devDependencies": {
|
|
22
|
+
"@babel/core": "^7.2.2",
|
|
23
|
+
"babel-loader": "^8.0.5",
|
|
24
|
+
"copy-webpack-plugin": "^7.0.0",
|
|
25
|
+
"rimraf-standalone": "^2.6.1-7",
|
|
26
|
+
"webpack": "^5.13.0",
|
|
27
|
+
"webpack-cli": "^4.3.1"
|
|
28
|
+
},
|
|
29
|
+
"license": "See LICENSE in LICENSE file or 'ConstellationJS Engine License.pdf' in dist/"
|
|
30
|
+
}
|