-
-
Notifications
You must be signed in to change notification settings - Fork 21
/
Copy pathpackage.json
78 lines (78 loc) · 1.88 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
{
"name": "mobx-vue",
"version": "2.2.0",
"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 --skipLibCheck",
"build:cjs": "rm -fr dist/lib && tsc --skipLibCheck -p tsconfig.cjs.json",
"lint": "tslint 'src/**/*.ts' && npm test",
"prepush": "npm run lint",
"test": "jest"
},
"repository": {
"type": "git",
"url": "git+https://github.com/mobxjs/mobx-vue.git"
},
"keywords": [
"mobx",
"vue",
"mobx-vue",
"bindings",
"connector"
],
"author": "Kuitos",
"license": "MIT",
"bugs": {
"url": "https://github.com/mobxjs/mobx-vue/issues"
},
"homepage": "https://github.com/mobxjs/mobx-vue#readme",
"peerDependencies": {
"mobx": "^2.0.0 || ^3.0.0 || ^4.0.0 || ^5.0.0 || ^6.0.0",
"vue": "^2.0.0"
},
"devDependencies": {
"@types/jest": "^22.2.3",
"@vue/test-utils": "1.0.0-beta.22",
"husky": "^0.14.3",
"jest": "^23.0.0",
"mobx": "^6.0.0",
"ts-jest": "^22.4.6",
"tslint": "^5.10.0",
"typescript": "^3.0.0",
"vue": "^2.6.14",
"vue-class-component": ">=7.2.6",
"vue-jest": "^2.6.0",
"vue-template-compiler": "^2.6.14"
},
"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/"
]
}
}