rox-ssr
Version:
CloudBees Feature Management JavaScript SDK for Server-Side Rendering
73 lines (72 loc) • 2.05 kB
JSON
{
"name": "rox-ssr",
"version": "6.0.15",
"description": "CloudBees Feature Management JavaScript SDK for Server-Side Rendering",
"author": "CloudBees, Inc. <support@cloudbees.com>",
"license": "SEE LICENSE IN LICENSE",
"homepage": "https://www.cloudbees.com/products/feature-management",
"repository": {
"type": "git",
"url": "https://github.com/rollout/roxjs.git"
},
"bugs": {
"url": "https://github.com/rollout/roxjs/issues",
"email": "support@cloudbees.com"
},
"keywords": [
"feature-flag",
"feature-flags",
"cloudbees",
"cloudbees.io",
"rox",
"ssr",
"flags",
"flag",
"configuration",
"remote-control",
"feature-management"
],
"ROX": {
"api_version": "1.9.0"
},
"scripts": {
"prebuild": "yarn run clean:dist",
"clean:dist": "rm -rf dist/*",
"build": "yarn build-browser && yarn build-es6",
"build-browser": "tsc --target es6 --outDir dist/browser --removeComments --project tsconfig.browser.json",
"build-es6": "tsc",
"lint": "eslint . --ext .js,.ts --fix",
"prepublishOnly": "yarn run build",
"test": "jest --no-watchman --testPathPattern ./src/** --detectOpenHandles --forceExit",
"test:watch": "jest --testPathPattern ./src/** --watch"
},
"main": "dist/es6/src/index.js",
"types": "dist/es6/src/index.d.ts",
"browser": "dist/browser/src/index.js",
"dependencies": {
"rox-browser": "^6.0.15",
"rox-node": "^6.0.15"
},
"devDependencies": {
"@cloudbees/eslint-plugin": "cloudbees/eslint-plugin",
"@types/jest": "^27.0.3",
"@types/node": "^18.0.3",
"ts-jest": "^27.1.2",
"typescript": "^4.2.3"
},
"files": [
"dist/**/*.js",
"dist/**/*.d.ts"
],
"jest": {
"preset": "ts-jest/presets/js-with-ts",
"testURL": "http://localhost/",
"testRegex": "(/__tests__/.*|\\.(test|spec))\\.(ts|tsx|js)$",
"transformIgnorePatterns": [
"node_modules/(?!(axios|rox-browser)/)"
],
"setupFilesAfterEnv": [
"<rootDir>/jest.setup.js"
]
}
}