forked from algolia/docsearch
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
69 lines (69 loc) · 2.13 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
{
"name": "docsearch.js",
"version": "2.1.8",
"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": "BABEL_ENV=test mocha --reporter dot ./test/helpers.js ./test/*-test.js",
"test:watch": "BABEL_ENV=test mocha --reporter min --watch ./test/helpers.js ./test/*-test.js",
"test:coverage": "./scripts/test-coverage",
"gh-pages": "./scripts/gh-pages"
},
"author": "Algolia <support@algolia.com> (https://github.com/algolia/)",
"license": "MIT",
"repository": "algolia/docsearch",
"devDependencies": {
"autoprefixer": "^6.3.6",
"babel": "^5.8.29",
"babel-core": "^5.8.29",
"babel-eslint": "^4.1.3",
"babel-istanbul": "^0.5.9",
"babel-loader": "^5.3.2",
"babel-plugin-rewire": "^0.1.22",
"conventional-changelog": "^0.5.1",
"coveralls": "^2.11.9",
"cssnano": "^3.7.0",
"doctoc": "^0.15.0",
"eslint": "^1.6.0",
"eslint-config-airbnb": "^0.1.0",
"eslint-config-algolia": "^4.7.0",
"eslint-plugin-algolia": "^1.5.0",
"eslint-plugin-react": "^3.5.1",
"expect": "^1.20.1",
"gh-pages": "^0.8.0",
"jsdom": "^7.1.1",
"json": "^9.0.4",
"mocha": "^2.5.3",
"mocha-jsdom": "^1.1.0",
"mocha-lcov-reporter": "^1.2.0",
"mversion": "^1.10.1",
"nd": "^1.2.0",
"node-sass": "^3.7.0",
"onchange": "^2.5.0",
"postcss-cli": "^2.5.2",
"pretty-bytes": "^2.0.1",
"semver": "^5.1.0",
"sinon": "^1.17.4",
"uglify-js": "^2.6.2",
"webpack": "^1.13.1",
"webpack-dev-server": "^1.14.1"
},
"peerDependencies": {},
"dependencies": {
"algoliasearch": "^3.18.0",
"autocomplete.js": "^0.21.8",
"hogan.js": "^3.0.2",
"to-factory": "^1.0.0"
}
}