aboutsummaryrefslogtreecommitdiff
path: root/node_modules/app-builder/package.json
diff options
context:
space:
mode:
authorMinteck <nekostarfan@gmail.com>2021-08-24 14:41:48 +0200
committerMinteck <nekostarfan@gmail.com>2021-08-24 14:41:48 +0200
commitd25e11bee6ca5ca523884da132d18e1400e077b9 (patch)
tree8af39fde19f7ed640a60fb397c7edd647dff1c4c /node_modules/app-builder/package.json
downloadkartik-iridium-d25e11bee6ca5ca523884da132d18e1400e077b9.tar.gz
kartik-iridium-d25e11bee6ca5ca523884da132d18e1400e077b9.tar.bz2
kartik-iridium-d25e11bee6ca5ca523884da132d18e1400e077b9.zip
Initial commit
Diffstat (limited to 'node_modules/app-builder/package.json')
-rw-r--r--node_modules/app-builder/package.json93
1 files changed, 93 insertions, 0 deletions
diff --git a/node_modules/app-builder/package.json b/node_modules/app-builder/package.json
new file mode 100644
index 0000000..07ed1d8
--- /dev/null
+++ b/node_modules/app-builder/package.json
@@ -0,0 +1,93 @@
+{
+ "name": "app-builder",
+ "version": "6.2.2",
+ "description": "Promise based composable functions for middleware",
+ "main": "./lib/app-builder.js",
+ "typings": "./lib/app-builder.d.ts",
+ "author": "Caleb Boyd (https://github.com/calebboyd)",
+ "license": "MIT",
+ "bugs": {
+ "url": "https://github.com/calebboyd/app-builder/issues"
+ },
+ "homepage": "https://github.com/calebboyd/app-builder",
+ "files": [
+ "lib",
+ "!**/*.spec.js"
+ ],
+ "scripts": {
+ "lint": "eslint \"src/**/*\" --fix",
+ "build": "npm run lint && tsc",
+ "prepublish": "npm run test",
+ "watch:typescript": "tsc -w",
+ "watch:test": "jest --watchAll",
+ "watch": "npm run build && concurrently -k \"npm:watch:typescript\" \"npm:watch:test\" -c blue,green",
+ "test": "npm run build && jest --passWithNoTests"
+ },
+ "jest": {
+ "testRegex": ".*?(\\.spec).js",
+ "watchPathIgnorePatterns": [
+ "\\.ts$"
+ ]
+ },
+ "prettier": {
+ "parser": "typescript",
+ "semi": false,
+ "singleQuote": true,
+ "printWidth": 120
+ },
+ "eslintConfig": {
+ "parser": "@typescript-eslint/parser",
+ "extends": [
+ "plugin:@typescript-eslint/recommended",
+ "prettier/@typescript-eslint",
+ "plugin:prettier/recommended"
+ ],
+ "parserOptions": {
+ "project": "./tsconfig.json"
+ },
+ "overrides": [
+ {
+ "files": [
+ "*.spec.ts"
+ ],
+ "env": {
+ "jest": true
+ }
+ }
+ ],
+ "rules": {
+ "@typescript-eslint/explicit-function-return-type": 0,
+ "@typescript-eslint/no-explicit-any": 0,
+ "@typescript-eslint/no-non-null-assertion": 0,
+ "@typescript-eslint/no-var-requires": 0,
+ "@typescript-eslint/no-use-before-define": 0
+ }
+ },
+ "repository": {
+ "type": "git",
+ "url": "https://github.com/calebboyd/app-builder.git"
+ },
+ "keywords": [
+ "middleware",
+ "functional",
+ "composable",
+ "composition",
+ "pipeline",
+ "onion",
+ "async",
+ "compose"
+ ],
+ "devDependencies": {
+ "@types/jest": "^25.2.1",
+ "@typescript-eslint/eslint-plugin": "^2.29.0",
+ "@typescript-eslint/parser": "^2.29.0",
+ "concurrently": "^5.1.0",
+ "eslint": "^6.8.0",
+ "eslint-config-prettier": "~6.11.0",
+ "eslint-plugin-prettier": "^3.1.3",
+ "eslint-watch": "^6.0.1",
+ "jest": "^25.4.0",
+ "prettier": "^2.0.5",
+ "typescript": "^3.8.3"
+ }
+}