forked from algolia/docsearch
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
80 lines (80 loc) · 2.27 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
{
"name": "docsearch.js",
"version": "2.3.3",
"description": "Add an autocomplete dropdown to your documentation",
"main": "dist/npm/index.js",
"scripts": {
"dev": "./scripts/dev",
"dev:docs": "./scripts/dev-docs",
"serve": "./scripts/serve",
"doctoc": "doctoc --maxlevel 3 README.md CONTRIBUTING.md",
"build": "./scripts/build",
"build:css": "./scripts/build-css",
"build:js": "./scripts/build-js",
"build:docs": "./scripts/build-docs",
"release": "./scripts/release",
"release:beta": "./scripts/release-beta",
"lint": "eslint .",
"test": "jest --coverage && npm run lint",
"test:watch": "jest --watch",
"gh-pages": "./scripts/gh-pages",
"precommit": "lint-staged"
},
"lint-staged": {
"*.js": [
"prettier --write --single-quote --trailing-comma es5",
"git add"
]
},
"files": [
"dist/"
],
"author": "Algolia <[email protected]> (https://github.com/algolia/)",
"license": "MIT",
"repository": "algolia/docsearch",
"devDependencies": {
"autoprefixer": "^6.7.7",
"babel-cli": "^6.24.0",
"babel-core": "^6.24.0",
"babel-eslint": "^7.2.1",
"babel-istanbul": "^0.12.2",
"babel-loader": "^6.4.1",
"babel-plugin-rewire": "^1.0.0",
"babel-preset-env": "^1.2.2",
"babel-preset-stage-3": "^6.22.0",
"conventional-changelog-cli": "^1.3.1",
"cssnano": "^3.7.0",
"doctoc": "^1.3.0",
"eslint": "^3.18.0",
"eslint-config-algolia": "^7.0.2",
"eslint-config-prettier": "^1.5.0",
"eslint-import-resolver-webpack": "^0.8.1",
"eslint-plugin-algolia": "^1.5.0",
"eslint-plugin-import": "^2.2.0",
"eslint-plugin-jest": "^19.0.1",
"gh-pages": "^0.12.0",
"husky": "^0.13.3",
"jest": "^19.0.2",
"jsdom": "^9.12.0",
"json": "^9.0.6",
"lint-staged": "^3.4.0",
"mversion": "^1.10.1",
"node-sass": "^4.5.1",
"onchange": "^3.2.1",
"postcss-cli": "^3.0.0",
"prettier": "^0.22.0",
"pretty-bytes-cli": "^2.0.0",
"semver": "^5.1.0",
"sinon": "^2.1.0",
"uglify-js": "^2.8.16",
"webpack": "^2.3.2",
"webpack-dev-server": "^2.4.2"
},
"peerDependencies": {},
"dependencies": {
"algoliasearch": "^3.22.1",
"autocomplete.js": "^0.28.0",
"hogan.js": "^3.0.2",
"to-factory": "^1.0.0"
}
}