90 lines
2.6 KiB
JSON
90 lines
2.6 KiB
JSON
{
|
|
"name": "vue-apollo-smart-ops",
|
|
"version": "0.1.0-alpha.2",
|
|
"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": "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",
|
|
"vue": ">=2.6",
|
|
"vue-apollo": ">=3"
|
|
},
|
|
"devDependencies": {
|
|
"@types/jest": "27.0.1",
|
|
"@types/lodash.isplainobject": "4.0.6",
|
|
"@types/lodash.mapvalues": "4.6.6",
|
|
"@typescript-eslint/eslint-plugin": "4.30.0",
|
|
"@typescript-eslint/parser": "4.30.0",
|
|
"@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.32.0",
|
|
"eslint-config-prettier": "8.3.0",
|
|
"eslint-plugin-import": "2.24.2",
|
|
"eslint-plugin-jest": "24.4.0",
|
|
"eslint-plugin-node": "11.1.0",
|
|
"eslint-plugin-promise": "5.1.0",
|
|
"eslint-plugin-vue": "7.17.0",
|
|
"graphql": "15.5.2",
|
|
"graphql-tag": "2.12.5",
|
|
"husky": "7.0.2",
|
|
"jest": "27.1.0",
|
|
"lint-staged": "11.1.2",
|
|
"mkdirp": "1.0.4",
|
|
"np": "7.5.0",
|
|
"prettier": "2.2.1",
|
|
"rimraf": "3.0.2",
|
|
"ts-jest": "27.0.5",
|
|
"typescript": "4.2.4",
|
|
"vue": "2.6.14",
|
|
"vue-apollo": "3.0.7",
|
|
"vue-class-component": "7.2.6",
|
|
"vue-property-decorator": "9.1.2"
|
|
},
|
|
"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"
|
|
}
|
|
}
|