onions
Version:
 # Onions 
69 lines (68 loc) • 2 kB
JSON
{
"name": "onions",
"version": "4.1.3",
"description": "",
"main": "./lib/index.js",
"module": "./lib/index.js",
"types": "./lib/index.d.ts",
"files": [
"lib",
"src"
],
"scripts": {
"prepare": "npm run clean && npm run lint && npm run test && npm run build",
"build": "tsc",
"tsc": "tsc",
"lint": "eslint ./src/index.ts",
"lint-fix": "eslint ./src/index.ts --fix",
"clean": "rimraf lib",
"test": "jest"
},
"prettier": {
"arrowParens": "always",
"proseWrap": "always",
"singleQuote": true,
"trailingComma": "all"
},
"repository": {
"type": "git",
"url": "git+https://github.com/yuanzhhh/onions.git"
},
"keywords": [
"onions",
"middleware"
],
"author": "evan yuanzh <evan.yuanzh@gmail.com>",
"license": "ISC",
"bugs": {
"url": "https://github.com/yuanzhhh/onions/issues"
},
"homepage": "https://github.com/yuanzhhh/onions#readme",
"devDependencies": {
"@types/jest": "^26.0.20",
"@types/node": "^13.13.41",
"@typescript-eslint/eslint-plugin": "^2.34.0",
"@typescript-eslint/parser": "^2.34.0",
"eslint": "^7.19.0",
"eslint-config-airbnb": "^18.1.0",
"eslint-config-prettier": "^6.11.0",
"eslint-config-standard": "^16.0.2",
"eslint-plugin-import": "^2.20.2",
"eslint-plugin-jsx-a11y": "^6.4.1",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-prettier": "^3.3.1",
"eslint-plugin-promise": "^4.2.1",
"eslint-plugin-react": "^7.22.0",
"eslint-plugin-standard": "^5.0.0",
"jest": "^26.0.1",
"prettier": "^2.0.5",
"rimraf": "^3.0.2",
"ts-jest": "^25.5.1",
"typescript": "^4.1.3"
},
"jest": {
"testRegex": "(/test/.*\\.spec\\.[tj]s)$",
"coverageProvider": "v8"
},
"dependencies": {}
}