-
Notifications
You must be signed in to change notification settings - Fork 8
/
package.json
72 lines (72 loc) · 2.02 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
{
"name": "@vuex-orm/plugin-search",
"version": "0.24.1",
"description": "Vuex ORM plugin for adding fuzzy search feature through model entities.",
"main": "dist/vuex-orm-search.cjs.js",
"browser": "dist/vuex-orm-search.esm.js",
"module": "dist/vuex-orm-search.esm-bundler.js",
"unpkg": "dist/vuex-orm-search.global.js",
"typings": "dist/src/index.d.ts",
"files": [
"dist"
],
"scripts": {
"build": "node scripts/build.js",
"clean": "rm -rf dist && rm -rf dist && rm -rf coverage && rm -rf .nyc_output && rm -rf .tmp",
"lint": "prettier --write --parser typescript \"{src,test}/**/*.ts\"",
"lint:fail": "prettier --check --parser typescript \"{src,test}/**/*.ts\"",
"test": "jest",
"test:watch": "jest --watch",
"coverage": "jest --collect-coverage",
"changelog": "conventional-changelog -p angular -i CHANGELOG.md -s",
"release": "node scripts/release.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/vuex-orm/plugin-search.git"
},
"keywords": [
"vue",
"vuex",
"vuex-plugin",
"vuex-orm",
"fuzzy search"
],
"author": "Conan Crawford",
"contributors": [
"Kia Ishii"
],
"license": "MIT",
"bugs": {
"url": "https://github.com/vuex-orm/plugin-search/issues"
},
"peerDependencies": {
"@vuex-orm/core": ">=0.34.0"
},
"dependencies": {
"fuse.js": "^3.4.6"
},
"devDependencies": {
"@rollup/plugin-commonjs": "^11.0.2",
"@rollup/plugin-node-resolve": "^7.1.1",
"@rollup/plugin-replace": "^2.3.1",
"@types/jest": "^24.0.23",
"@vuex-orm/core": "^0.36.3",
"brotli": "^1.3.2",
"chalk": "^3.0.0",
"codecov": "^3.6.5",
"conventional-changelog-cli": "^2.0.31",
"enquirer": "^2.3.4",
"execa": "^4.0.0",
"jest": "^25.2.4",
"prettier": "1.19.1",
"rollup": "^2.3.2",
"rollup-plugin-terser": "^5.3.0",
"rollup-plugin-typescript2": "^0.27.0",
"semver": "^7.1.3",
"ts-jest": "^25.3.0",
"typescript": "^3.8.3",
"vue": "^2.6.11",
"vuex": "^3.1.3"
}
}