-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
77 lines (77 loc) · 1.98 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
{
"name": "vue-mobx",
"version": "2.0.0",
"author": "pomysky@gmail.com",
"description": "Mobx binding for Vuejs 2",
"license": "MIT",
"main": "dist/index.js",
"typings": "types/index.d.ts",
"private": false,
"repository": {
"type": "git",
"url": "https://github.com/dwqs/vue-mobx"
},
"keywords": [
"vuejs",
"vue",
"mobx"
],
"scripts": {
"test": "./node_modules/.bin/ava ./test/index.js",
"clean": "rm -rf dist types",
"prepush": "npm run lint",
"prebuild": "npm run prepush && npx tsc -p ./tsconfig.json",
"build": "npx rollup -c",
"build:ug": "npx rollup -c && npx rollup -c rollup.build.config.js",
"lint": "npx tslint -p ./tsconfig.json --type-check src/**/*.ts",
"fix": "npx tslint -p ./tsconfig.json --type-check --fix src/**/*.ts"
},
"ava": {
"babel": {
"presets": [
"es2015",
"stage-0"
],
"plugins": [
"transform-runtime",
"transform-decorators-legacy"
]
}
},
"dependencies": {},
"peerDependencies": {
"vue": ">=2.0.0",
"mobx": ">=2.2.0"
},
"devDependencies": {
"@types/node": "^8.0.17",
"ava": "^0.21.0",
"babel-core": "^6.25.0",
"babel-plugin-transform-decorators-legacy": "^1.3.4",
"babel-plugin-transform-runtime": "^6.23.0",
"babel-preset-es2015": "^6.24.1",
"babel-preset-stage-0": "^6.24.1",
"debug": "^2.6.8",
"husky": "^0.14.2",
"mobx": "^3.2.2",
"rollup": "^0.43.0",
"rollup-plugin-babel": "^2.7.1",
"rollup-plugin-commonjs": "^8.0.2",
"rollup-plugin-node-builtins": "^2.1.2",
"rollup-plugin-node-resolve": "^3.0.0",
"rollup-plugin-typescript": "^0.8.1",
"rollup-plugin-uglify": "^2.0.1",
"tslint": "^5.4.3",
"typescript": "^2.4.1",
"uglify-es": "^3.0.26",
"vue": "^2.4.2"
},
"homepage": "https://github.com/dwqs/vue-mobx",
"bugs": {
"url": "https://github.com/dwqs/vue-mobx/issues"
},
"engines": {
"node": ">= 6.0.0",
"npm": ">= 5.2.0"
}
}