@plusscommunities/pluss-feature-builder-web 1.0.9-beta.2 → 1.0.9-beta.3
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/package.json +46 -46
package/package.json
CHANGED
|
@@ -1,47 +1,47 @@
|
|
|
1
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
|
-
}
|
|
2
|
+
"name": "@plusscommunities/pluss-feature-builder-web",
|
|
3
|
+
"version": "1.0.9-beta.3",
|
|
4
|
+
"description": "Contains the feature builder extension for the pluss communities ",
|
|
5
|
+
"exports": {
|
|
6
|
+
".": "./dist/index.js"
|
|
7
|
+
},
|
|
8
|
+
"files": [
|
|
9
|
+
"dist/"
|
|
10
|
+
],
|
|
11
|
+
"scripts": {
|
|
12
|
+
"build": "rollup -c",
|
|
13
|
+
"prepublishOnly": "(cd .. && npm install) && npm run build",
|
|
14
|
+
"betapatch": "npm version prepatch --preid=beta",
|
|
15
|
+
"patch": "npm version patch",
|
|
16
|
+
"betaupload": "npm publish --access public --tag beta",
|
|
17
|
+
"betaupload:p": "npm run betapatch && npm run betaupload",
|
|
18
|
+
"upload": "npm publish --access public",
|
|
19
|
+
"upload:p": "npm run patch && npm run upload",
|
|
20
|
+
"copy:add": "run(){ ext=${1:-default}; test -f src/values.config.$ext.js || cp src/values.config.default.js src/values.config.$ext.js; }; run",
|
|
21
|
+
"copy:get": "echo $npm_package_name",
|
|
22
|
+
"copy:set": "run(){ target='@plusscommunities/pluss-feature-builder-web'; ext=${1:-default}; [ $ext == 'default' ] && replace=$target || replace=$target'-'$ext; echo 'Setting target to '$replace; test -f src/values.config.$ext.js && cp -f src/values.config.$ext.js src/values.config.js; REPLACE=$replace node -e 'const pkg=require(\"./package.json\"); pkg.name=process.env.REPLACE; require(\"fs\").writeFileSync(\"./package.json\", JSON.stringify(pkg, null, 2))'; }; run",
|
|
23
|
+
"copy:betaupload": "for file in `ls ./src/values.config.*.js`; do dup=`echo $file | sed 's/.*values\\.config\\.\\(.*\\)\\.js/\\1/'`; npm run copy:set $dup; npm run betaupload; done; npm run copy:set;",
|
|
24
|
+
"copy:upload": "npm run patch; for file in `ls ./src/values.config.*.js`; do dup=`echo $file | sed 's/.*values\\.config\\.\\(.*\\)\\.js/\\1/'`; npm run copy:set $dup; npm run upload; done; npm run copy:set;"
|
|
25
|
+
},
|
|
26
|
+
"author": "Phillip Suh",
|
|
27
|
+
"dependencies": {
|
|
28
|
+
"@babel/runtime": "^7.14.0",
|
|
29
|
+
"@fortawesome/free-solid-svg-icons": "^6.0.0",
|
|
30
|
+
"@fortawesome/react-fontawesome": "^0.2.0",
|
|
31
|
+
"@dnd-kit/sortable": "^7.0.0",
|
|
32
|
+
"@dnd-kit/core": "^6.0.0"
|
|
33
|
+
},
|
|
34
|
+
"peerDependencies": {
|
|
35
|
+
"@plusscommunities/pluss-core-web": "*",
|
|
36
|
+
"lodash": "*",
|
|
37
|
+
"moment": "*",
|
|
38
|
+
"react": "*",
|
|
39
|
+
"react-bootstrap": "*",
|
|
40
|
+
"react-dom": "*",
|
|
41
|
+
"react-redux": "*",
|
|
42
|
+
"react-router-dom": "*",
|
|
43
|
+
"react-router": "*",
|
|
44
|
+
"react-fontawesome": "*"
|
|
45
|
+
},
|
|
46
|
+
"keywords": []
|
|
47
|
+
}
|