-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
48 lines (48 loc) · 1.04 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
{
"name": "@tygr/vue-async-filter",
"version": "1.1.3",
"description": "A simple mixin that adds the async filter to vue",
"main": "index.js",
"types": "index.d.ts",
"files": [
"index.js",
"index.d.ts",
"readme.md"
],
"scripts": {
"build": "tsc && yarn pack -f vue-async-filter.tgz",
"load": "yarn --cwd test add ../vue-async-filter.tgz",
"test": "yarn --cwd test test",
"lint": "tslint -p ."
},
"keywords": [
"async",
"filter",
"pipe",
"observable",
"rxjs",
"promise",
"vue",
"mixin"
],
"author": "Tyler Grinn",
"license": "ISC",
"repository": {
"url": "git+https://github.com/tylergrinn/vue-async-filter.git",
"type": "git"
},
"bugs": {
"url": "https://github.com/tylergrinn/vue-async-filter/issues"
},
"homepage": "https://github.com/tylergrinn/vue-async-filter#readme",
"devDependencies": {
"rxjs": "^6.4.0",
"tslint": "^5.18.0",
"typescript": "^3.3.1",
"vue": "^2.6.2"
},
"peerDependencies": {
"rxjs": "6",
"vue": "2"
}
}