frack-settings
Advanced tools
Comparing version 0.1.10 to 0.1.11-1
202
package.json
{ | ||
"name": "frack-settings", | ||
"version": "0.1.10", | ||
"description": "Settings defaults and runtime loader from rc file", | ||
"license": "MIT", | ||
"repository": "https://git.siteone.cz/frack/frack-settings.git", | ||
"main": "lib/node.classic.commonjs.js", | ||
"module": "lib/node.classic.esmodule.js", | ||
"es2015": "lib/node.es2015.esmodule.js", | ||
"main:modern": "lib/node.modern.commonjs.js", | ||
"module:modern": "lib/node.modern.esmodule.js", | ||
"browser": "lib/browser.classic.esmodule.js", | ||
"browser:modern": "lib/browser.modern.esmodule.js", | ||
"author": { | ||
"name": "Viktor Bezdek", | ||
"email": "viktor.bezdek@siteone.cz", | ||
"url": "siteone.cz" | ||
"name": "frack-settings", | ||
"version": "0.1.11-1", | ||
"description": "Settings defaults and runtime loader from rc file", | ||
"license": "MIT", | ||
"repository": "https://git.siteone.cz/frack/frack-settings.git", | ||
"main": "dist/frack-settings.js", | ||
"umd:main": "dist/frack-settings.umd.js", | ||
"module": "dist/frack-settings.m.js", | ||
"source": "src/index.js", | ||
"author": { | ||
"name": "Viktor Bezdek", | ||
"email": "viktor.bezdek@siteone.cz", | ||
"url": "siteone.cz" | ||
}, | ||
"engines": { | ||
"node": ">=6.0.0", | ||
"yarn": ">=0.21.3", | ||
"npm": ">=5.0.0" | ||
}, | ||
"directories": [ | ||
"dist", | ||
"src" | ||
], | ||
"scripts": { | ||
"build": "microbundle build", | ||
"dev": "microbundle watch", | ||
"test": "jest --no-cache", | ||
"coverage": "npm test -- --coverage", | ||
"postcoverage": "opn coverage/lcov-report/index.html", | ||
"lint": "eslint src test --fix", | ||
"flow": "flow check", | ||
"docs": "documentation readme src --section=Usage", | ||
"clean": "rimraf lib", | ||
"prebuild": "npm run clean", | ||
"watch": "npm-watch", | ||
"beta": "npm version prerelease && npm publish", | ||
"patch": "npm version patch && npm publish", | ||
"minor": "npm version minor && npm publish", | ||
"major": "npm version major && npm publish", | ||
"prepublish": "npm run lint && npm test && npm run build", | ||
"postpublish": "git push origin master --follow-tags" | ||
}, | ||
"jest": { | ||
"testEnvironment": "node", | ||
"transform": { | ||
"^.+\\.js?$": "babel-jest" | ||
}, | ||
"engines": { | ||
"node": ">=6.0.0", | ||
"yarn": ">=0.21.3", | ||
"npm": ">=5.0.0" | ||
}, | ||
"files": [ | ||
"lib", | ||
"src" | ||
], | ||
"scripts": { | ||
"build": "rollup -c", | ||
"dev": "rollup -c -w", | ||
"test": "jest --no-cache", | ||
"coverage": "npm test -- --coverage", | ||
"postcoverage": "opn coverage/lcov-report/index.html", | ||
"lint": "eslint src test --fix", | ||
"flow": "flow check", | ||
"docs": "documentation readme src --section=Usage", | ||
"clean": "rimraf lib", | ||
"prebuild": "npm run docs && npm run clean", | ||
"watch": "npm-watch", | ||
"beta": "npm version prerelease && npm publish", | ||
"patch": "npm version patch && npm publish", | ||
"minor": "npm version minor && npm publish", | ||
"major": "npm version major && npm publish", | ||
"prepublish": "npm run lint && npm test && npm run build", | ||
"postpublish": "git push origin master --follow-tags" | ||
}, | ||
"watch": { | ||
"test": "{src,test}/*.js", | ||
"lint": "{src,test}/*.js", | ||
"build": "src" | ||
}, | ||
"jest": { | ||
"testEnvironment": "node", | ||
"transform": { | ||
"^.+\\.js?$": "babel-jest" | ||
}, | ||
"testPathIgnorePatterns": [ | ||
".frackrc.js" | ||
] | ||
}, | ||
"keywords": [ | ||
"frack", | ||
"settings" | ||
], | ||
"dependencies": { | ||
"cross-env": "^5.1.0", | ||
"deepmerge": "^2.0.0", | ||
"lodash": "^4.17.4", | ||
"rollup-plugin-node-builtins": "^2.1.2", | ||
"rollup-plugin-node-resolve": "^3.0.0" | ||
}, | ||
"devDependencies": { | ||
"babel": "^6.23.0", | ||
"babel-eslint": "^8.0.1", | ||
"babel-helpers": "^6.24.1", | ||
"babel-jest": "^21.2.0", | ||
"babel-loader": "^7.1.2", | ||
"babel-plugin-external-helpers": "^6.22.0", | ||
"babel-plugin-flow-react-proptypes": "^6.1.0", | ||
"babel-plugin-import-inspector": "^2.0.0", | ||
"babel-plugin-lodash": "^3.2.11", | ||
"babel-plugin-log-deprecated": "^1.1.0", | ||
"babel-plugin-module-resolver": "^2.7.1", | ||
"babel-plugin-syntax-dynamic-import": "^6.18.0", | ||
"babel-plugin-syntax-flow": "^6.18.0", | ||
"babel-plugin-transform-class-properties": "^6.24.1", | ||
"babel-plugin-transform-flow-strip-types": "^6.22.0", | ||
"babel-plugin-transform-object-rest-spread": "^6.26.0", | ||
"babel-plugin-transform-react-constant-elements": "^6.23.0", | ||
"babel-plugin-transform-react-inline-elements": "^6.22.0", | ||
"babel-plugin-transform-react-jsx-self": "^6.22.0", | ||
"babel-plugin-transform-react-jsx-source": "^6.22.0", | ||
"babel-plugin-transform-react-remove-prop-types": "^0.4.10", | ||
"babel-plugin-transform-runtime": "^6.23.0", | ||
"babel-preset-env": "^1.6.1", | ||
"babel-preset-es2015": "^6.24.1", | ||
"babel-preset-flow": "^6.23.0", | ||
"babel-preset-react": "^6.24.1", | ||
"babel-preset-stage-0": "^6.24.1", | ||
"builtin-modules": "^1.1.1", | ||
"documentation": "5.3.3", | ||
"emoji-cz": "^0.3.0", | ||
"eslint": "^4.9.0", | ||
"eslint-config-frack": "^2.1.1", | ||
"eslint-plugin-flowtype": "^2.39.1", | ||
"eslint-plugin-flowtype-errors": "^3.3.4", | ||
"eslint-plugin-import": "^2.7.0", | ||
"eslint-plugin-jsx-a11y": "^6.0.2", | ||
"eslint-plugin-react": "^7.4.0", | ||
"flow-bin": "^0.57.3", | ||
"jest-cli": "^21.2.1", | ||
"rimraf": "^2.6.2", | ||
"rollup": "^0.50.0", | ||
"rollup-plugin-babel": "^3.0.2", | ||
"rollup-plugin-commonjs": "^8.2.1", | ||
"rollup-plugin-flow": "^1.1.1", | ||
"rollup-plugin-json": "^2.3.0" | ||
}, | ||
"config": { | ||
"commitizen": { | ||
"path": "./node_modules/emoji-cz" | ||
} | ||
"testPathIgnorePatterns": [ | ||
".frackrc.js" | ||
] | ||
}, | ||
"keywords": [ | ||
"frack", | ||
"settings" | ||
], | ||
"publishConfig": { | ||
"access": "public" | ||
}, | ||
"dependencies": { | ||
"cross-env": "^7.0.2", | ||
"deepmerge": "^4.2.2", | ||
"lodash": "^4.17.4" | ||
}, | ||
"devDependencies": { | ||
"microbundle": "0.12.0-next.8", | ||
"documentation": "5.3.3", | ||
"emoji-cz": "^0.3.0", | ||
"eslint": "^4.9.0", | ||
"babel-eslint": "^10.1.0", | ||
"eslint-config-frack": "^2.1.1", | ||
"eslint-plugin-flowtype": "^2.39.1", | ||
"eslint-plugin-flowtype-errors": "^3.3.4", | ||
"eslint-plugin-import": "^2.7.0", | ||
"eslint-plugin-jsx-a11y": "^6.0.2", | ||
"eslint-plugin-react": "^7.4.0", | ||
"flow-bin": "^0.57.3", | ||
"jest-cli": "^21.2.1", | ||
"rimraf": "^2.6.2" | ||
}, | ||
"config": { | ||
"commitizen": { | ||
"path": "./node_modules/emoji-cz" | ||
} | ||
} | ||
} |
@@ -19,82 +19,2 @@ ![Logo of the project](./images/logo.sample.png) | ||
### appMode | ||
Application mode | ||
### serverPort | ||
The port on which to run our server. | ||
### clientDevserverPort | ||
The port on which to run our client bundle dev server. | ||
### disableSsr | ||
Disable SSR? | ||
### clientPublicPath | ||
Host fully static files here e.g. favicons. | ||
### serverBundleOutputPath | ||
Where should we output our server bundle? (relative to project root) | ||
### clientBundleOutputPath | ||
Where should we output our client bundle? (relative to project root) | ||
### clientBundleAssetsFilename | ||
What should we name the file that contains details of all the files contained within our client bundle? | ||
### clientBundleChunkManifestFilename | ||
What should we name the file that contains actual file names of our generated chunks? | ||
### clientBundleHttpPath | ||
What is the public http path at which we will serve our client bundle from? | ||
### redisPort | ||
Redis instance port | ||
### redisCacheSsr | ||
Cache prerendered pages to Redis | ||
### redisCacheSsrTtl | ||
How long should be the prerendered pages cached before invalidation (in seconds) | ||
### redisCacheProxy | ||
Cache API responses | ||
### accessLogs | ||
Logging | ||
### baseUrl | ||
Base URL of project | ||
### apiEndpointGraphql | ||
API endpoints | ||
### jenkinsDeployAllbranchJob | ||
Allbranch | ||
### jenkinsDeployStagingJob | ||
Staging | ||
### jenkinsDeployProductionToken | ||
Production | ||
## Licensing | ||
@@ -101,0 +21,0 @@ |
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
Major refactor
Supply chain riskPackage has recently undergone a major refactor. It may be unstable or indicate significant internal changes. Use caution when updating to versions that include significant changes.
Found 1 instance in 1 package
Filesystem access
Supply chain riskAccesses the file system, and could potentially read sensitive data.
Found 1 instance in 1 package
Minified code
QualityThis package contains minified code. This may be harmless in some cases where minified code is included in packaged libraries, however packages on npm should not minify code.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
Uses eval
Supply chain riskPackage uses dynamic code execution (e.g., eval()), which is a dangerous practice. This can prevent the code from running in certain environments and increases the risk that the code may contain exploits or malicious behavior.
Found 1 instance in 1 package
Filesystem access
Supply chain riskAccesses the file system, and could potentially read sensitive data.
Found 1 instance in 1 package
602882
3
14
85
12426
9
4
42
+ Addedcross-env@7.0.3(transitive)
+ Addedcross-spawn@7.0.6(transitive)
+ Addeddeepmerge@4.3.1(transitive)
+ Addedpath-key@3.1.1(transitive)
+ Addedshebang-command@2.0.0(transitive)
+ Addedshebang-regex@3.0.0(transitive)
+ Addedwhich@2.0.2(transitive)
- Removedrollup-plugin-node-builtins@^2.1.2
- Removedrollup-plugin-node-resolve@^3.0.0
- Removedabstract-leveldown@0.12.4(transitive)
- Removedasn1.js@4.10.1(transitive)
- Removedbl@0.8.2(transitive)
- Removedbn.js@4.12.15.2.1(transitive)
- Removedbrorand@1.1.0(transitive)
- Removedbrowserify-aes@1.2.0(transitive)
- Removedbrowserify-cipher@1.0.1(transitive)
- Removedbrowserify-des@1.0.2(transitive)
- Removedbrowserify-fs@1.0.0(transitive)
- Removedbrowserify-rsa@4.1.1(transitive)
- Removedbrowserify-sign@4.2.3(transitive)
- Removedbuffer-es6@4.9.3(transitive)
- Removedbuffer-from@1.1.2(transitive)
- Removedbuffer-xor@1.0.3(transitive)
- Removedbuiltin-modules@2.0.0(transitive)
- Removedcipher-base@1.0.5(transitive)
- Removedclone@0.1.19(transitive)
- Removedconcat-stream@1.6.2(transitive)
- Removedcore-util-is@1.0.3(transitive)
- Removedcreate-ecdh@4.0.4(transitive)
- Removedcreate-hash@1.2.0(transitive)
- Removedcreate-hmac@1.1.7(transitive)
- Removedcross-env@5.2.1(transitive)
- Removedcross-spawn@6.0.6(transitive)
- Removedcrypto-browserify@3.12.1(transitive)
- Removeddeepmerge@2.2.1(transitive)
- Removeddeferred-leveldown@0.2.0(transitive)
- Removeddes.js@1.1.0(transitive)
- Removeddiffie-hellman@5.0.3(transitive)
- Removedelliptic@6.6.1(transitive)
- Removederrno@0.1.8(transitive)
- Removedevp_bytestokey@1.0.3(transitive)
- Removedforeach@2.0.6(transitive)
- Removedfunction-bind@1.1.2(transitive)
- Removedfwd-stream@1.0.4(transitive)
- Removedhash-base@3.0.5(transitive)
- Removedhash.js@1.1.7(transitive)
- Removedhasown@2.0.2(transitive)
- Removedhmac-drbg@1.0.1(transitive)
- Removedidb-wrapper@1.7.2(transitive)
- Removedindexof@0.0.1(transitive)
- Removedinherits@2.0.4(transitive)
- Removedis@0.2.7(transitive)
- Removedis-core-module@2.15.1(transitive)
- Removedis-module@1.0.0(transitive)
- Removedis-object@0.1.2(transitive)
- Removedisarray@0.0.11.0.0(transitive)
- Removedisbuffer@0.0.0(transitive)
- Removedlevel-blobs@0.1.7(transitive)
- Removedlevel-filesystem@1.2.0(transitive)
- Removedlevel-fix-range@1.0.22.0.0(transitive)
- Removedlevel-hooks@4.5.0(transitive)
- Removedlevel-js@2.2.4(transitive)
- Removedlevel-peek@1.0.6(transitive)
- Removedlevel-sublevel@5.2.3(transitive)
- Removedlevelup@0.18.6(transitive)
- Removedltgt@2.2.1(transitive)
- Removedmd5.js@1.3.5(transitive)
- Removedmiller-rabin@4.0.1(transitive)
- Removedminimalistic-assert@1.0.1(transitive)
- Removedminimalistic-crypto-utils@1.0.1(transitive)
- Removednice-try@1.0.5(transitive)
- Removedobject-keys@0.2.00.4.0(transitive)
- Removedoctal@1.0.0(transitive)
- Removedonce@1.4.0(transitive)
- Removedparse-asn1@5.1.7(transitive)
- Removedpath-key@2.0.1(transitive)
- Removedpath-parse@1.0.7(transitive)
- Removedpbkdf2@3.1.2(transitive)
- Removedprocess-es6@0.11.6(transitive)
- Removedprocess-nextick-args@2.0.1(transitive)
- Removedprr@0.0.01.0.1(transitive)
- Removedpublic-encrypt@4.0.3(transitive)
- Removedrandombytes@2.1.0(transitive)
- Removedrandomfill@1.0.4(transitive)
- Removedreadable-stream@1.0.341.1.142.3.8(transitive)
- Removedresolve@1.22.8(transitive)
- Removedripemd160@2.0.2(transitive)
- Removedrollup-plugin-node-builtins@2.1.2(transitive)
- Removedrollup-plugin-node-resolve@3.4.0(transitive)
- Removedsafe-buffer@5.1.25.2.1(transitive)
- Removedsemver@2.3.25.7.2(transitive)
- Removedsha.js@2.4.11(transitive)
- Removedshebang-command@1.2.0(transitive)
- Removedshebang-regex@1.0.0(transitive)
- Removedstring-range@1.2.2(transitive)
- Removedstring_decoder@0.10.311.1.1(transitive)
- Removedsupports-preserve-symlinks-flag@1.0.0(transitive)
- Removedtypedarray@0.0.6(transitive)
- Removedtypedarray-to-buffer@1.0.4(transitive)
- Removedutil-deprecate@1.0.2(transitive)
- Removedwhich@1.3.1(transitive)
- Removedwrappy@1.0.2(transitive)
- Removedxtend@2.0.62.1.22.2.03.0.0(transitive)
Updatedcross-env@^7.0.2
Updateddeepmerge@^4.2.2