UNPKG

@lando/platformsh

Version:

A Lando plugin that provides a tight integration with Platform.sh.

82 lines (81 loc) 2.49 kB
{ "name": "platformsh-client", "version": "0.1.230", "description": "Isomorphic Javascript library for accessing the Platform.sh API", "browser": "lib/client/platform-api.js", "main": "lib/server/platform-api.js", "types": "types/index.d.ts", "scripts": { "build": "rm -rf ./types && rm -rf ./lib && webpack --env.mode=build && mv types/src/* types/ && rm -r types/src", "dev": "webpack --progress --colors --watch --env.mode=dev", "test": "npm run test-web && npm run test-node", "test-web": "mocha -r mock-local-storage ./test/.setup.js ./test/**/*.spec.js", "test-node": "mocha -r ./test/.setup-node.js ./test/**/*.spec.js", "eslint": "eslint .", "precommit": "lint-staged && npm run build", "prepush": "npm test" }, "devDependencies": { "@babel/cli": "^7.8.4", "@babel/core": "^7.9.0", "@babel/plugin-transform-runtime": "^7.9.0", "@babel/preset-env": "^7.9.5", "@babel/preset-typescript": "^7.16.7", "@babel/register": "^7.9.0", "@types/atob": "^2.1.2", "@types/detect-node": "^2.0.0", "@types/is-url": "^1.2.30", "@types/node": "^17.0.10", "@types/object.pick": "^1.3.1", "@typescript-eslint/eslint-plugin": "^5.56.0", "@typescript-eslint/parser": "^5.56.0", "babel-loader": "8.1.0", "chai": "3.5.0", "eslint": "^8.36.0", "eslint-config-prettier": "^8.8.0", "eslint-plugin-import": "^2.27.5", "eslint-plugin-prettier": "^4.2.1", "fake-fetch": "^1.0.0", "fetch-mock": "^5.9.4", "husky": "^0.14.3", "jsdom": "^9.6.0", "lint-staged": "^7.3.0", "mocha": "^6.0.2", "mock-local-storage": "^1.1.8", "prettier": "^2.8.6", "sinon": "^1.17.6", "terser-webpack-plugin": "^2.3.6", "ts-node": "^10.4.0", "typescript": "^4.5.4", "webpack": "^4.43.0", "webpack-cli": "^3.3.11", "webpack-merge": "^4.2.2", "yargs": "6.6.0" }, "lint-staged": { "*.js": [ "prettier --write", "eslint", "git add" ] }, "author": "", "license": "MIT", "dependencies": { "atob": "^2.1.2", "basename": "^0.1.2", "cross-fetch": "^3.1.5", "detect-node": "^2.0.4", "email-validator": "^1.0.7", "es6-promise": "4.2.6", "is-scalar": "^1.0.2", "is-url": "^1.2.2", "oauth2-popup-flow": "^1.1.0", "object.pick": "^1.3.0", "parse_url": "^0.1.1", "slugify": "^1.3.4", "to-querystring": "^1.1.3", "ts-loader": "~8.2.0", "url-pattern": "^1.0.3" } }