mobx-vue
Version:
Vue bindings for MobX
81 lines (80 loc) • 1.91 kB
JSON
{
"name": "mobx-vue",
"version": "2.0.4",
"description": "Vue bindings for MobX",
"main": "./lib/index.js",
"module": "./esm/index.js",
"types": "./esm/index.d.ts",
"sideEffects": false,
"scripts": {
"start": "jest -o --watch --coverage false",
"build": "npm run build:esm & npm run build:cjs",
"build:esm": "rm -fr dist/esm && tsc",
"build:cjs": "rm -fr dist/lib && tsc -p tsconfig.cjs.json",
"lint": "tslint 'src/**/*.ts' && npm test",
"codecov": "codecov",
"prepush": "npm run lint",
"test": "jest"
},
"repository": {
"type": "git",
"url": "git+https://github.com/kuitos/mobx-vue.git"
},
"keywords": [
"mobx",
"vue",
"mobx-vue",
"bindings",
"connector"
],
"author": "Kuitos",
"license": "MIT",
"bugs": {
"url": "https://github.com/kuitos/mobx-vue/issues"
},
"homepage": "https://github.com/kuitos/mobx-vue#readme",
"dependencies": {
"mobx": "*",
"vue": "^2.0.0",
"vue-class-component": ">=4.3.0",
"tslib": "^1.9.0"
},
"devDependencies": {
"@types/jest": "^22.2.3",
"@vue/test-utils": "^1.0.0-beta.18",
"codecov": "^3.0.2",
"husky": "^0.14.3",
"jest": "^23.0.0",
"ts-jest": "^22.4.6",
"tslint": "^5.10.0",
"tslint-eslint-rules": "^5.3.1",
"typescript": "^2.8.3",
"vue-jest": "^2.6.0",
"vue-template-compiler": "^2.5.16"
},
"jest": {
"globals": {
"vue-jest": {
"tsConfigFile": "tsconfig.json"
}
},
"moduleFileExtensions": [
"js",
"ts",
"vue"
],
"testMatch": [
"<rootDir>/src/**/__tests__/**/*.spec.ts"
],
"transform": {
"^.+\\.ts$": "<rootDir>/node_modules/ts-jest",
".*\\.(vue)$": "<rootDir>/node_modules/vue-jest"
},
"collectCoverage": true,
"coveragePathIgnorePatterns": [
"/node_modules/",
"/__tests__/",
"/lib/"
]
}
}