UNPKG

single-spa

Version:
83 lines (82 loc) 2.31 kB
{ "name": "single-spa", "version": "5.0.0", "description": "Microfrontends made easy", "main": "lib/umd/single-spa.min.js", "types": "typings/single-spa.d.ts", "module": "lib/esm/single-spa.min.js", "scripts": { "build": "yarn clean && concurrently yarn:build:dev yarn:build:prod", "build:prod": "rollup -c --environment NODE_ENV:'production'", "build:dev": "rollup -c", "build:analyze": "rollup -c --environment ANALYZER:'analyzer'", "watch": "rollup -c -w", "prepublishOnly": "yarn build", "clean": "rimraf lib", "test": "BABEL_ENV=test jest --config jest.config.json", "prettier": "prettier './**' --write", "lint": "eslint src" }, "husky": { "hooks": { "pre-commit": "pretty-quick --staged && concurrently yarn:test yarn:lint" } }, "files": [ "lib", "typings" ], "homepage": "https://single-spa.js.org", "repository": "https://github.com/single-spa/single-spa", "bugs": "https://github.com/single-spa/single-spa/issues", "keywords": [ "microfrontends", "single", "page", "application", "framework", "react", "angular", "vue" ], "author": "Joel Denning", "license": "MIT", "dependencies": {}, "devDependencies": { "@babel/core": "^7.5.5", "@babel/plugin-syntax-dynamic-import": "^7.2.0", "@babel/preset-env": "^7.5.5", "@rollup/plugin-replace": "^2.2.1", "@types/jest": "^24.0.23", "babel-eslint": "^10.0.3", "babel-jest": "^24.9.0", "babel-plugin-dynamic-import-node": "^2.3.0", "concurrently": "^5.0.0", "custom-event": "^1.0.1", "eslint": "6.3.0", "eslint-config-canopy": "2.3.0", "eslint-config-important-stuff": "^1.1.0", "husky": "^3.0.5", "jest": "^24.9.0", "prettier": "^1.19.1", "pretty-quick": "^2.0.1", "rimraf": "^3.0.0", "rollup": "^1.20.3", "rollup-plugin-analyzer": "^3.1.2", "rollup-plugin-babel": "^4.3.3", "rollup-plugin-commonjs": "^10.1.0", "rollup-plugin-node-resolve": "^5.2.0", "rollup-plugin-terser": "^5.1.1" }, "browserslist": [ "ie >= 11", "last 4 Safari major versions", "last 10 Chrome major versions", "last 10 Firefox major versions", "last 4 Edge major versions" ], "ignore": [ "examples", "docs" ] }