@twofistedjustice/square-pie
Version:
an easy to use class based chainable interface for the Square API.
66 lines (65 loc) • 2.18 kB
JSON
{
"name": "@twofistedjustice/square-pie",
"version": "1.0.0-alpha.5",
"description": "an easy to use class based chainable interface for the Square API.",
"main": "src/index.js",
"keywords": [
"square",
"squareup"
],
"scripts": {
"t": "jest",
"async": "node tests/data_preparation/setup_test.js & npx jest tests/async/",
"settest": "node tests/data_preparation/setup_test.js",
"s": "node tests/data_preparation/setup_test.js",
"asynctest": "npx jest tests/async/",
"clunk": "nodemon tests/manual/catalog_test.js",
"lint-staged": "lint-staged",
"markdownlint": "markdownlint",
"prettier:check": "prettier --ignore-path .prettierignore --check '**/*.{js,jsw,jsx, json,md}'",
"prettier:fix": "prettier --ignore-path .prettierignore --write '**/*.{js,jsw,jsx,json,md}'",
"prepare": "husky install",
"pre-release": "standard-version --prerelease alpha --no-verify",
"jsdoc": "jsdoc -a all -c jsdoc.json -r -R readme.md src/index.js -d pie_docs/jsdoc && jsdoc2md --files src/index.js > pie_md_docs/PIE.md"
},
"author": "Russ Bain",
"license": "ISC",
"repository": {
"type": "git",
"url": "https://github.com/TwoFistedJustice/square-pie"
},
"dependencies": {
"dotenv": "^16.0.0",
"nanoid": "^3.1.30",
"node-fetch": "^2.6.1",
"validator": "^13.7.0"
},
"devDependencies": {
"@babel/core": "^7.15.0",
"@babel/eslint-parser": "^7.15.4",
"@babel/node": "^7.14.9",
"@babel/preset-env": "^7.15.0",
"@babel/register": "^7.14.5",
"@commitlint/cli": "^16.2.1",
"@commitlint/config-conventional": "^16.2.1",
"chai": "^4.3.4",
"docdash": "^1.2.0",
"eslint": "^8.9.0",
"eslint-config-prettier": "^8.3.0",
"husky": "^7.0.4",
"jest": "^27.0.6",
"jsdoc": "^3.6.10",
"jsdoc-to-markdown": "^7.1.1",
"lint-staged": "^12.3.4",
"markdownlint": "^0.24.0",
"markdownlint-cli": "^0.29.0",
"nodemon": "^2.0.12",
"prettier": "^2.3.2",
"standard-version": "^9.3.2"
},
"lint-staged": {
"**/*": "prettier --write --ignore-unknown",
"*.js": "eslint --cache --fix",
"*.{js,css,md}": "prettier --write"
}
}