neo4j-client-sso
Version:
Single sign-on client (frontend) library for Neo4j products
74 lines (73 loc) • 2.02 kB
JSON
{
"name": "neo4j-client-sso",
"version": "1.2.3",
"description": "Single sign-on client (frontend) library for Neo4j products",
"main": "lib/cjs/index.js",
"module": "lib/esm/index.js",
"types": "lib/esm/index.d.ts",
"files": [
"/lib"
],
"scripts": {
"build-babel": "yarn babel --out-dir lib-babel --extensions \".ts\" src",
"build": "yarn clean && tsc -p tsconfig.json && tsc -p tsconfig-cjs.json",
"buildWithDocs": "yarn clean && yarn cleanDocs && yarn docs && yarn build",
"build-clean": "yarn clean",
"docs": "typedoc src/index.ts",
"test": "yarn lint && jest",
"testOnly": "jest",
"lint": "eslint 'src/**/*.{js,ts,tsx,json}' --fix",
"lintOnly": "eslint 'src/**/*.{js,ts,tsx,json}'",
"clean": "rimraf lib",
"cleanModules": "rimraf node_modules",
"cleanDocs": "rimraf docs"
},
"repository": {
"type": "git",
"url": "git+https://github.com/neo4j-devtools/neo4j-client-sso.git"
},
"keywords": [
"Neo4j",
"SSO"
],
"author": "Neo4j Engineering",
"license": "Apache-2.0",
"lint-staged": {
"src/**/*.{js,ts,tsx,css,json}": [
"yarn lint"
]
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"devDependencies": {
"@babel/cli": "^7.15.7",
"@babel/core": "^7.15.5",
"@babel/preset-typescript": "^7.15.0",
"@types/file-saver": "^2.0.3",
"@types/jest": "^27.0.1",
"@types/node": "^16.9.1",
"@typescript-eslint/eslint-plugin": "^4.31.1",
"@typescript-eslint/parser": "^4.31.1",
"eslint": "^7.32.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-prettier": "^4.0.0",
"husky": "^7.0.0",
"jest": "^27.2.0",
"lint-staged": "^11.1.2",
"prettier": "^2.4.0",
"rimraf": "^3.0.2",
"sinon": "^12.0.1",
"ts-jest": "^27.0.5",
"typedoc": "^0.22.3",
"typescript": "^4.4.3",
"whatwg-fetch": "^3.6.2"
},
"dependencies": {
"file-saver": "^2.0.5",
"jwt-decode": "^3.1.2",
"lodash.pick": "^4.4.0"
}
}