forked from algolia/docsearch
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
86 lines (86 loc) · 2.4 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
{
"name": "docsearch.js",
"version": "2.6.3",
"description": "Add an autocomplete dropdown to your documentation",
"main": "dist/npm/index.js",
"scripts": {
"build": "./scripts/build",
"build:css": "./scripts/build-css",
"build:js": "./scripts/build-js",
"docs:build": "cd ./docs && yarn build",
"docs:serve": "cd ./docs && yarn serve",
"docs:deploy": "cd ./docs && yarn deploy",
"doctoc": "doctoc --maxlevel 3 README.md CONTRIBUTING.md",
"lint": "./scripts/lint",
"format:scss": "prettier --write ./src/**/*.scss",
"format:md": "prettier --write '**/*.md'",
"release": "./scripts/release",
"serve": "./scripts/serve",
"test": "./scripts/test",
"test:watch": "./scripts/test-watch"
},
"files": [
"dist/"
],
"author": "Algolia <support@algolia.com> (https://github.com/algolia/)",
"license": "MIT",
"repository": "algolia/docsearch",
"renovate": {
"extends": [
"config:library",
"schedule:weekends",
":automergeMinor",
":automergeBranchPush",
":semanticCommits",
":rebaseStalePrs",
":timezone(Europe/Paris)"
]
},
"devDependencies": {
"autoprefixer": "9.6.1",
"babel-cli": "6.26.0",
"babel-core": "6.26.3",
"babel-eslint": "10.0.3",
"babel-istanbul": "0.12.2",
"babel-jest": "24.9.0",
"babel-loader": "8.0.6",
"babel-plugin-rewire": "1.2.0",
"babel-preset-env": "1.7.0",
"babel-preset-stage-3": "6.24.1",
"conventional-changelog-cli": "2.0.23",
"cssnano": "4.1.10",
"eslint": "6.3.0",
"eslint-config-algolia": "13.4.0",
"eslint-config-prettier": "6.1.0",
"eslint-plugin-import": "2.18.2",
"eslint-plugin-jest": "22.16.0",
"eslint-plugin-prettier": "3.1.0",
"jest": "24.9.0",
"jsdom": "15.1.1",
"json": "9.0.6",
"live-server": "1.2.1",
"mversion": "1.13.0",
"node-sass": "4.12.0",
"onchange": "6.0.0",
"parallelshell": "3.0.2",
"postcss-cli": "6.1.3",
"prettier": "1.18.2",
"pretty-bytes-cli": "2.0.0",
"semver": "6.3.0",
"sinon": "7.4.2",
"tailwindcss": "^1.1.2",
"uglify-js": "3.6.0",
"webpack": "4.39.3",
"webpack-cli": "3.3.7"
},
"peerDependencies": {},
"dependencies": {
"algoliasearch": "^3.24.5",
"autocomplete.js": "0.37.0",
"hogan.js": "^3.0.2",
"request": "^2.87.0",
"stack-utils": "^1.0.1",
"to-factory": "^1.0.0",
"zepto": "^1.2.0"
}
}