@aivec/wp-docker-dev-factory
Version:
Spin up local WordPress environments with Docker.
104 lines (103 loc) • 2.58 kB
JSON
{
"name": "@aivec/wp-docker-dev-factory",
"version": "3.1.7-7",
"description": "Spin up local WordPress environments with Docker.",
"bin": {
"aivec-wpdocker": "./dist/index.js"
},
"directories": {
"example": "examples"
},
"dependencies": {
"archiver": "^3.1.1",
"express": "^4.17.1",
"lodash": "^4.17.20",
"ngrok": "^5.0.0-beta.2",
"prompts": "^2.4.0",
"yaml": "^2.8.0",
"yargs": "^16.2.0"
},
"devDependencies": {
"@types/express": "^4.17.11",
"@types/node": "^13.13.39",
"@types/prompts": "^2.0.9",
"@types/yargs": "^15.0.12",
"@typescript-eslint/eslint-plugin": "^2.34.0",
"@typescript-eslint/parser": "^2.34.0",
"chai": "^4.2.0",
"eslint": "^6.8.0",
"eslint-config-prettier": "^6.15.0",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-prettier": "^3.3.1",
"eslint-plugin-tsdoc": "^0.2.10",
"mocha": "^7.2.0",
"prettier": "^2.2.1",
"ts-node": "^10.0.0",
"typescript": "^4.0.0"
},
"scripts": {
"test": "mocha --require ts-node/register",
"lint": "eslint --ext .ts src",
"lint:fix": "eslint --fix --ext .ts src",
"format": "prettier -c src/**/*.ts",
"format:fix": "prettier --write src/**/*.ts",
"build": "tsc -p .",
"start": "ts-node src/index.ts",
"start:server": "ts-node src/cache-server.ts"
},
"repository": {
"type": "git",
"url": "git+https://github.com/aivec/wp-docker-dev-factory.git"
},
"keywords": [
"WordPress",
"Docker"
],
"author": "Evan D Shaw",
"license": "GPL-2.0",
"bugs": {
"url": "https://github.com/aivec/wp-docker-dev-factory/issues"
},
"homepage": "https://github.com/aivec/wp-docker-dev-factory#readme",
"prettier": {
"printWidth": 100,
"tabWidth": 2,
"semi": true,
"singleQuote": true,
"trailingComma": "all"
},
"eslintIgnore": [
"test/**/*.js"
],
"eslintConfig": {
"plugins": [
"prettier",
"@typescript-eslint/eslint-plugin",
"eslint-plugin-tsdoc"
],
"extends": [
"plugin:@typescript-eslint/recommended",
"prettier/@typescript-eslint",
"plugin:prettier/recommended"
],
"parser": "@typescript-eslint/parser",
"parserOptions": {
"project": "./tsconfig.json",
"ecmaVersion": 2018,
"sourceType": "module"
},
"rules": {
"tsdoc/syntax": "warn"
},
"settings": {
"import/parsers": {
"@typescript-eslint/parser": [
".ts"
]
},
"import/resolver": {
"typescript": {}
}
}
}
}