vue-apollo-smart-ops/package.json

81 строка
2.4 KiB
JSON

{
"name": "vue-apollo-smart-ops",
"version": "0.2.0-beta.1",
"description": "Create TypeScript-typed operation functions for your Vue Apollo queries and mutations.",
"author": "Equalogic Ltd",
"license": "MIT",
"publishConfig": {
"access": "public"
},
"repository": {
"type": "git",
"url": "https://github.com/equalogic/vue-apollo-smart-ops.git"
},
"scripts": {
"prebuild": "rimraf dist && npm run barrels:generate",
"build": "tsc -p tsconfig.build.json",
"postbuild": "cp package.json README.md dist/",
"format": "prettier --write .",
"lint": "eslint --ext .ts --ignore-path .gitignore .",
"lint:fix": "eslint --ext .ts --ignore-path .gitignore . --fix",
"test": "jest",
"test:watch": "jest --watch",
"test:ci": "jest --ci --runInBand",
"version": "npm run build",
"postversion": "npm run postbuild",
"release": "np --contents dist/",
"barrels:generate": "barrelsby --config barrelsby.json"
},
"dependencies": {
"lodash.isplainobject": "^4.0",
"lodash.mapvalues": "^4.6"
},
"optionalDependencies": {
"vue-class-component": "^7.2"
},
"peerDependencies": {
"apollo-client": ">=2.6",
"apollo-link": ">=1.2",
"graphql": "^0.8.0 || ^0.9.0 || ^0.10.0 || ^0.11.0 || ^0.12.0 || ^0.13.0 || ^14.0.0 || ^15.0.0 || ^16.0.0",
"vue": ">=2.6",
"vue-apollo": ">=3"
},
"devDependencies": {
"@types/jest": "27.5.2",
"@types/lodash.isplainobject": "4.0.7",
"@types/lodash.mapvalues": "4.6.7",
"@typescript-eslint/eslint-plugin": "5.30.5",
"@typescript-eslint/parser": "5.30.5",
"@vue/test-utils": "1.3.0",
"apollo-client": "2.6.10",
"apollo-link": "1.2.14",
"barrelsby": "2.3.4",
"dotenv-cli": "6.0.0",
"eslint": "8.19.0",
"eslint-config-prettier": "8.5.0",
"eslint-plugin-import": "2.26.0",
"eslint-plugin-jest": "26.5.3",
"eslint-plugin-node": "11.1.0",
"eslint-plugin-promise": "6.0.0",
"eslint-plugin-vue": "9.2.0",
"graphql": "15.8.0",
"graphql-tag": "2.12.6",
"jest": "27.5.1",
"mkdirp": "1.0.4",
"np": "7.6.1",
"prettier": "2.7.1",
"rimraf": "3.0.2",
"ts-jest": "27.1.5",
"typescript": "4.7.4",
"vue": "2.6.14",
"vue-apollo": "3.1.0",
"vue-class-component": "7.2.6",
"vue-property-decorator": "9.1.2"
},
"engines": {
"node": ">=12.9.0"
},
"main": "index.js",
"types": "index.d.ts"
}