Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

frack-settings

Package Overview
Dependencies
Maintainers
2
Versions
25
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

frack-settings - npm Package Compare versions

Comparing version 0.1.10 to 0.1.11-1

.flowconfig

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 @@

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc