forked from algolia/vue-instantsearch
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
99 lines (99 loc) · 3.07 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
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
{
"name": "vue-instantsearch",
"author": {
"name": "Algolia, Inc.",
"url": "https://www.algolia.com"
},
"description": "👀 Lightning-fast Algolia search for Vue apps",
"keywords": [
"vue",
"algolia",
"search",
"instantsearch",
"components",
"ui",
"facet",
"autocomplete"
],
"license": "MIT",
"version": "1.6.0",
"files": [
"dist"
],
"main": "dist/vue-instantsearch.common.js",
"module": "dist/vue-instantsearch.esm.js",
"repository": "https://github.com/algolia/vue-instantsearch",
"scripts": {
"build": "yarn run build:cjs && yarn run build:es && yarn run build:umd",
"build:cjs": "rollup -c ./build/rollup.cjs.config.js",
"build:es": "rollup -c ./build/rollup.es.config.js",
"build:umd": "rollup -c ./build/rollup.umd.config.js",
"storybook": "start-storybook -p 9001 -c .storybook",
"storybook:build": "build-storybook -c .storybook -o docs/dist/stories",
"docs:build": "cd docs && yarn && yarn build",
"docs:build:dev": "cd docs && yarn && yarn build:dev",
"docs:watch": "cd docs && yarn && yarn dev",
"docs:deploy": "cd docs && yarn && yarn deploy",
"test": "jest --verbose --coverage && yarn run lint",
"test:update": "jest --verbose --updateSnapshot",
"test:watch": "jest --verbose --watchAll --notify",
"lint": "eslint --ext .js,.vue .",
"lint:fix": "eslint --ext .js,.vue . --fix",
"changelog": "conventional-changelog --preset angular --infile CHANGELOG.md --same-file",
"changelog:unreleased": "conventional-changelog --preset angular --output-unreleased"
},
"dependencies": {
"algoliasearch": "^3.27.0",
"algoliasearch-helper": "^2.26.0",
"escape-html": "^1.0.3"
},
"peerDependencies": {
"vue": "^2.2.2"
},
"devDependencies": {
"@storybook/vue": "^3.2.12",
"babel-eslint": "^7.2.3",
"babel-jest": "^19.0.0",
"babel-preset-es2015": "^6.24.0",
"concurrently": "^3.4.0",
"conventional-changelog-cli": "^1.3.1",
"eslint": "^4.0.0",
"eslint-config-algolia": "11.0.1-beta",
"eslint-config-prettier": "^2.1.1",
"eslint-plugin-html": "^3.0.0",
"eslint-plugin-import": "^2.3.0",
"eslint-plugin-jest": "^20.0.3",
"eslint-plugin-prettier": "^2.1.2",
"jest": "^21.2.1",
"jest-serializer-html": "^4.0.0",
"jest-vue-preprocessor": "^1.1.0",
"prettier": "^1.4.4",
"rollup": "^0.41.5",
"rollup-plugin-buble": "^0.15.0",
"rollup-plugin-commonjs": "^7.1.0",
"rollup-plugin-filesize": "^1.0.1",
"rollup-plugin-json": "^2.1.1",
"rollup-plugin-node-resolve": "3.0.0",
"rollup-plugin-replace": "^1.1.1",
"rollup-plugin-uglify": "^1.0.1",
"rollup-plugin-vue": "^2.3.1",
"rollup-watch": "^3.2.2",
"vue": "^2.2.2"
},
"jest": {
"setupFiles": [
"<rootDir>/jest.setup.js"
],
"moduleFileExtensions": [
"js",
"vue"
],
"snapshotSerializers": [
"jest-serializer-html"
],
"transform": {
"^.+\\.js$": "<rootDir>/node_modules/babel-jest",
".*\\.(vue)$": "<rootDir>/node_modules/jest-vue-preprocessor"
}
}
}