forked from algolia/instantsearch
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
123 lines (123 loc) · 4.05 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
113
114
115
116
117
118
119
120
121
122
123
{
"name": "instantsearch.js",
"version": "2.0.0",
"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-docs.sh",
"staging": "./scripts/staging-deploy.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:build:dev": "./scripts/docs/build-dev.sh",
"docs:publish": "./scripts/docs/publish.sh",
"docs:update-website-search-index": "./scripts/docs/update-website-search-index.sh",
"finish-release": "./scripts/finish-release.sh",
"view-changelog": "conventional-changelog -p angular",
"release": "./scripts/release.sh",
"test": "jest",
"test:watch": "jest --watch --bail",
"release-maintenance": "./scripts/release-maintenance.sh",
"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",
"argos": "argos upload functional-tests/screenshots --token $ARGOS_TOKEN || true",
"serve": "./scripts/serve.sh"
},
"repository": "algolia/instantsearch.js",
"files": [
"dist",
"dist-es5-module"
],
"devDependencies": {
"argos-cli": "^0.0.8",
"autoprefixer": "^6.7.7",
"autoprefixer-loader": "^3.2.0",
"babel-cli": "^6.24.0",
"babel-core": "^6.24.0",
"babel-eslint": "^7.1.1",
"babel-loader": "^6.4.0",
"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.24.0",
"babel-preset-react": "^6.23.0",
"babel-preset-stage-2": "^6.22.0",
"babel-register": "^6.24.0",
"babel-template": "^6.23.0",
"babel-types": "^6.23.0",
"bel": "^4.6.0",
"collect-json": "^1.0.8",
"compression": "^1.6.2",
"conventional-changelog-cli": "^1.3.1",
"css-loader": "^0.28.4",
"dev-novel": "^0.0.3",
"doctoc": "^1.3.0",
"enzyme": "^2.7.1",
"eslint": "^3.17.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",
"express": "^4.15.2",
"gh-pages": "^1.0.0",
"http-server": "^0.9.0",
"jest": "^19.0.2",
"jsdom-global": "^2.1.1",
"json": "^9.0.6",
"mkdirp": "^0.5.1",
"mversion": "^1.10.1",
"node-sass": "^4.5.0",
"postcss-cli": "^2.6.0",
"preact": "^8.1.0",
"preact-compat": "^3.14.1",
"pretty-bytes-cli": "^2.0.0",
"raw-loader": "^0.5.1",
"react-test-renderer": "^15.4.2",
"sass-lint": "^1.10.2",
"sass-loader": "^6.0.6",
"semver": "^5.3.0",
"sinon": "^2.0.0",
"style-loader": "^0.18.2",
"surge": "^0.18.0",
"watch": "^1.0.2",
"wdio-dot-reporter": "^0.0.8",
"wdio-mocha-framework": "^0.5.10",
"wdio-sauce-service": "^0.4.0",
"wdio-visual-regression-service": "^0.8.0",
"webdriverio": "^4.8.0",
"webpack": "^1.14.0",
"webpack-dev-server": "^1.16.2"
},
"jest": {
"testPathIgnorePatterns": [
"<rootDir>/node_modules/",
"<rootDir>/dist*",
"<rootDir>/functional-tests"
]
},
"dependencies": {
"algoliasearch": "^3.24.0",
"algoliasearch-helper": "^2.21.0",
"classnames": "^2.2.5",
"clean-css-cli": "^4.0.9",
"events": "^1.1.0",
"hogan.js": "^3.0.2",
"lodash": "^4.17.4",
"prop-types": "^15.5.10",
"react": "^15.4.2",
"react-dom": "^15.4.2",
"rheostat": "^2.1.1",
"to-factory": "^1.0.0",
"uglify-js": "2"
},
"license": "MIT"
}