Files
vue-apollo-smart-ops/package.json
T
Simon Garner 7593629c61
Test / dependencies (push) Has been cancelled
Test / lint (push) Has been cancelled
Test / build (push) Has been cancelled
Test / test (push) Has been cancelled
0.0.4
2021-08-04 17:30:24 +12:00

87 lines
2.5 KiB
JSON

{
"name": "vue-apollo-smart-ops",
"version": "0.0.4",
"description": "Create TypeScript-typed operation functions for your Vue Apollo queries and mutations.",
"author": "Madscience Ltd",
"license": "MIT",
"publishConfig": {
"access": "public"
},
"repository": {
"type": "git",
"url": "https://github.com/madscience/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/",
"lint": "eslint --ext .ts --ignore-path .gitignore .",
"lint:fix": "eslint --ext .ts --ignore-path .gitignore . --fix",
"test": "jest",
"test:watch": "jest --watch",
"test:ci": "rimraf test/.results && mkdirp test/.results && jest --ci --runInBand --passWithNoTests",
"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"
},
"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",
"vue": ">=2.6",
"vue-apollo": ">=3"
},
"devDependencies": {
"@types/jest": "26.0.24",
"@types/lodash.isplainobject": "4.0.6",
"@types/lodash.mapvalues": "4.6.6",
"@typescript-eslint/eslint-plugin": "4.28.5",
"@typescript-eslint/parser": "4.28.5",
"@vue/test-utils": "1.2.2",
"apollo-client": "2.6.10",
"apollo-link": "1.2.14",
"barrelsby": "2.2.0",
"dotenv-cli": "4.0.0",
"eslint": "7.31.0",
"eslint-config-prettier": "7.2.0",
"eslint-plugin-import": "2.23.4",
"eslint-plugin-jest": "24.4.0",
"eslint-plugin-node": "11.1.0",
"eslint-plugin-prettier": "3.4.0",
"eslint-plugin-promise": "4.3.1",
"eslint-plugin-vue": "7.14.0",
"graphql": "15.5.1",
"husky": "7.0.1",
"jest": "27.0.6",
"jest-html-reporters": "2.1.6",
"lint-staged": "11.1.1",
"mkdirp": "1.0.4",
"np": "7.5.0",
"prettier": "2.2.1",
"rimraf": "3.0.2",
"ts-jest": "27.0.4",
"typescript": "4.2.4",
"vue": "2.6.14",
"vue-apollo": "3.0.7",
"vue-jest": "3.0.7"
},
"engines": {
"node": ">=12.9.0"
},
"main": "index.js",
"types": "index.d.ts",
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.{ts,js}": "eslint --ext .ts,.js --ignore-path .gitignore --fix --cache"
}
}