@e-mage/nestjs-shopify-guards
Version:
Nest.js Shopify guards
93 lines (92 loc) • 2.52 kB
JSON
{
"name": "@e-mage/nestjs-shopify-guards",
"version": "1.0.3",
"description": "Nest.js Shopify guards",
"author": "E-Mage Tomasz Zwierzchoń",
"contributors": [
{
"name": "Tomasz Zwierzchoń",
"url": "https://e-mage.pl"
}
],
"license": "SEE LICENSE IN LICENSE",
"main": "./dist/index.js",
"typings": "./dist/index.d.ts",
"scripts": {
"prebuild": "rimraf -rf dist",
"build": "tsc -p tsconfig.build.json",
"format": "prettier --write \"{lib,test}/**/*.ts\"",
"lint": "eslint 'lib/**/*.ts' --fix",
"prepublish:npm": "npm run build",
"publish:npm": "npm publish --access public",
"test": "jest",
"test:watch": "jest --watch",
"test:cov": "jest --coverage",
"test:debug": "node --inspect-brk -r tsconfig-paths/register -r ts-node/register node_modules/.bin/jest --runInBand",
"test:publish": "npm run build && npm pack",
"prerelease": "npm run build",
"release": "release-it"
},
"repository": {
"type": "git",
"url": "https://github.com/e-mage-gh/nestjs-shopify-guards.git"
},
"bugs": {
"url": "https://github.com/e-mage-gh/nestjs-shopify-guards/issues"
},
"keywords": [
"NestJs",
"Shopify",
"Guards",
"HMAC",
"Webhooks",
"NodeJs"
],
"devDependencies": {
"@nestjs/cli": "^9.0.0",
"@nestjs/common": "^9.0.0",
"@nestjs/core": "^9.0.0",
"@nestjs/platform-express": "^9.0.0",
"@nestjs/schematics": "^9.0.0",
"@nestjs/testing": "^9.0.0",
"@types/express": "^4.17.13",
"@types/jest": "28.1.4",
"@types/node": "^16.0.0",
"@types/supertest": "^2.0.11",
"@typescript-eslint/eslint-plugin": "^5.0.0",
"@typescript-eslint/parser": "^5.0.0",
"eslint": "^8.0.1",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-prettier": "^4.0.0",
"jest": "28.1.2",
"prettier": "^2.3.2",
"reflect-metadata": "^0.1.13",
"release-it": "^15.6.0",
"rimraf": "^3.0.2",
"rxjs": "^7.2.0",
"source-map-support": "^0.5.20",
"supertest": "^6.1.3",
"ts-jest": "28.0.5",
"ts-loader": "^9.2.3",
"ts-node": "^10.0.0",
"tsconfig-paths": "4.0.0",
"typescript": "^4.3.5"
},
"jest": {
"moduleFileExtensions": [
"js",
"json",
"ts"
],
"rootDir": "lib",
"testRegex": ".*\\.spec\\.ts$",
"transform": {
"^.+\\.(t|j)s$": "ts-jest"
},
"collectCoverageFrom": [
"**/*.(t|j)s"
],
"coverageDirectory": "../coverage",
"testEnvironment": "node"
}
}