vue-composition-api-proxied
Version:
A proxy-based alternative to reactive in Vue 2 / Vue Composition API
61 lines (60 loc) • 1.56 kB
JSON
{
"name": "vue-composition-api-proxied",
"version": "1.3.5",
"description": "A proxy-based alternative to reactive in Vue 2 / Vue Composition API",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"lint": "eslint './src/**/*.{js,ts,tsx}'",
"test": "jest",
"test:watch": "jest --watchAll",
"build": "tsc",
"watch": "tsc -w",
"start": "npm link && nodemon",
"release": "npm run lint && npm test && git push origin master && npm publish"
},
"repository": {
"type": "git",
"url": "https://github.com/bendytree/vue-composition-api-proxied.git"
},
"keywords": [
"TypeScript",
"Vue"
],
"author": {
"name": "Josh Wright",
"email": "josh@joshwright.com"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/bendytree/vue-composition-api-proxied/issues"
},
"homepage": "https://github.com/bendytree/vue-composition-api-proxied#readme",
"husky": {
"hooks": {
"pre-commit": "npm run lint && npm test",
"pre-push": "npm run lint && npm test"
}
},
"peerDependencies": {
"vue": "*",
"@vue/composition-api": "*"
},
"devDependencies": {
"@types/jest": "26.0.15",
"@types/node": "12.12.20",
"@typescript-eslint/eslint-plugin": "4.8.2",
"@typescript-eslint/parser": "4.8.2",
"eslint": "7.14.0",
"husky": "4.3.0",
"jest": "26.6.3",
"nodemon": "2.0.6",
"semantic-release": "17.3.0",
"ts-jest": "26.4.4",
"typescript": "4.1.2",
"vue": "2.6.14"
},
"files": [
"dist/**/*"
]
}