-
Notifications
You must be signed in to change notification settings - Fork 190
/
package.json
62 lines (62 loc) · 1.44 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
{
"name": "vue-rx",
"version": "6.3.0",
"description": "RxJS bindings for Vue",
"main": "dist/vue-rx.js",
"module": "dist/vue-rx.esm.js",
"sideEffects": false,
"files": [
"dist",
"types/*.d.ts"
],
"typings": "types/index.d.ts",
"repository": {
"type": "git",
"url": "git+https://github.com/vuejs/vue-rx.git"
},
"keywords": [
"vue",
"rx",
"rxjs"
],
"author": "Evan You",
"license": "MIT",
"bugs": {
"url": "https://github.com/vuejs/vue-rx/issues"
},
"homepage": "https://github.com/vuejs/vue-rx#readme",
"scripts": {
"dev": "rollup -c rollup.config.js -w",
"build": "rollup -c rollup.config.js",
"lint": "eslint src test example",
"test": "npm run test:unit && npm run test:types",
"test:unit": "jest",
"test:types": "tsc -p types/test",
"dev:test": "jest --watch",
"prebuild": "npm run lint",
"pretest": "npm run build",
"prepublishOnly": "npm run build"
},
"devDependencies": {
"buble": "^0.19.3",
"eslint": "^4.19.1",
"eslint-plugin-vue-libs": "^3.0.0",
"jest": "^23.1.0",
"rollup": "^0.59.4",
"rollup-plugin-alias": "^1.4.0",
"rollup-plugin-buble": "^0.19.2",
"rollup-watch": "^4.3.1",
"rxjs": "^7.5.5",
"typescript": "^4.6.3",
"vue": "^2.5.16"
},
"peerDependencies": {
"rxjs": "^6.0.0 || ^7.0.0"
},
"eslintConfig": {
"root": true,
"extends": [
"plugin:vue-libs/recommended"
]
}
}