forked from algolia/instantsearch
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
112 lines (112 loc) · 3.87 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
100
101
102
103
104
105
106
107
108
109
110
111
112
{
"name": "instantsearch.js",
"version": "1.11.15",
"description": "instantsearch.js is a library of widgets to build high performance instant search experiences using Algolia",
"homepage": "https://community.algolia.com/instantsearch.js/",
"main": "dist-es5-module/index.js",
"author": "Algolia <[email protected]>",
"scripts": {
"build": "./scripts/build.sh",
"dev": "./scripts/dev.sh",
"staging": "./scripts/staging-deploy.sh",
"dev:docs": "./scripts/dev-docs.sh",
"doctoc": "doctoc --maxlevel 3 README.md CONTRIBUTING.md",
"lint": "npm run lint:js && npm run lint:css",
"lint:js": "eslint .",
"lint:css": "./scripts/lint-css",
"docs:jsdoc": "babel-node ./scripts/docs/gen-widget-doc.js",
"docs:update-website": "./scripts/docs/update-website.sh",
"docs:update-website-search-index": "./scripts/docs/update-website-search-index.sh",
"docs:build-preview": "./scripts/docs/build-preview.sh",
"finish-release": "./scripts/finish-release.sh",
"view-changelog": "conventional-changelog -p angular",
"release": "./scripts/release.sh",
"test": "BABEL_ENV=test mocha --opts scripts/mocha.opts --reporter dot && npm run lint",
"test:watch": "BABEL_ENV=test mocha --opts scripts/mocha.opts --reporter min --watch",
"test:functional": "wdio functional-tests/wdio.conf.js",
"test:functional:dev": "babel-node scripts/dev-functional-tests",
"test:functional:dev:debug-server": "PORT=9090 babel-node scripts/dev-functional-tests-debug-server",
"serve": "./scripts/serve.sh"
},
"repository": "algolia/instantsearch.js",
"files": [
"dist",
"dist-es5-module"
],
"devDependencies": {
"autoprefixer": "^6.7.6",
"babel-cli": "^6.23.0",
"babel-core": "^6.23.1",
"babel-eslint": "^7.1.1",
"babel-loader": "^6.3.2",
"babel-plugin-rewire": "^1.0.0-beta-5",
"babel-plugin-syntax-jsx": "^6.18.0",
"babel-plugin-transform-react-constant-elements": "^6.23.0",
"babel-plugin-transform-react-remove-prop-types": "^0.3.2",
"babel-preset-es2015": "^6.22.0",
"babel-preset-react": "^6.23.0",
"babel-preset-stage-2": "^6.22.0",
"babel-register": "^6.23.0",
"babel-template": "^6.23.0",
"babel-types": "^6.23.0",
"cheerio": "^0.22.0",
"collect-json": "^1.0.8",
"compression": "^1.6.2",
"conventional-changelog-cli": "^1.2.0",
"dmd": "^2.1.2",
"doctoc": "^1.3.0",
"enzyme": "^2.7.1",
"eslint": "^3.16.1",
"eslint-config-algolia": "^6.0.1",
"eslint-import-resolver-webpack": "^0.8.1",
"eslint-plugin-import": "^2.2.0",
"eslint-plugin-jasmine": "^2.2.0",
"eslint-plugin-react": "^6.10.0",
"expect": "^1.20.2",
"expect-jsx": "^2.6.0",
"expose-loader": "^0.7.3",
"express": "^4.14.1",
"gh-pages": "^0.12.0",
"http-server": "^0.9.0",
"jsdoc-to-markdown": "^1.3.7",
"jsdom": "^9.11.0",
"jsdom-global": "^2.1.1",
"json": "^9.0.4",
"mkdirp": "^0.5.1",
"mocha": "^3.2.0",
"mversion": "^1.10.1",
"node-sass": "^4.5.0",
"postcss-cli": "^2.6.0",
"preact": "^7.2.0",
"preact-compat": "^3.13.1",
"pretty-bytes-cli": "^2.0.0",
"raw-loader": "^0.5.1",
"react-addons-test-utils": "^15.4.2",
"rimraf": "^2.6.1",
"sass-lint": "^1.10.2",
"semver": "^5.3.0",
"sinon": "^2.0.0-pre",
"surge": "^0.18.0",
"uglify-js": "^2.8.0",
"watch": "^1.0.2",
"wdio-dot-reporter": "^0.0.7",
"wdio-mocha-framework": "^0.5.8",
"wdio-sauce-service": "^0.3.0",
"webdriverio": "^4.6.2",
"webpack": "^1.14.0",
"webpack-dev-server": "^1.16.2"
},
"dependencies": {
"algoliasearch-helper": "^2.19.0",
"classnames": "^2.2.5",
"clean-css-cli": "^4.0.8",
"events": "^1.1.0",
"hogan.js": "^3.0.2",
"lodash": "^4.17.4",
"react": "^15.4.2",
"react-dom": "^15.4.2",
"react-nouislider": "^1.14.2",
"to-factory": "^1.0.0"
},
"license": "MIT"
}