forked from algolia/autocomplete
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
78 lines (78 loc) · 2.19 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
{
"name": "autocomplete.js",
"description": "Fast and fully-featured autocomplete library",
"keywords": [
"autocomplete",
"typeahead"
],
"homepage": "https://github.com/algolia/autocomplete.js",
"bugs": "https://github.com/algolia/autocomplete.js/issues",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/algolia/autocomplete.js.git"
},
"peerDependencies": {
"angular": "< 2.0.0",
"jquery": ">= 3.1.0"
},
"devDependencies": {
"angular": "^1.5.8",
"angular-mocks": "^1.5.8",
"babel-eslint": "^7.0.0",
"chai": "^3.5.0",
"colors": "^1.1.2",
"eslint": "1.5.1",
"eslint-config-airbnb": "0.1.0",
"eslint-config-algolia": "3.0.0",
"grunt": "^1.0.1",
"grunt-banner": "^0.6.0",
"grunt-cli": "1.2.0",
"grunt-concurrent": "^2.3.1",
"grunt-contrib-clean": "^1.0.0",
"grunt-contrib-concat": "^1.0.1",
"grunt-contrib-connect": "^1.0.2",
"grunt-contrib-uglify": "^2.0.0",
"grunt-contrib-watch": "^1.0.0",
"grunt-eslint": "^17.2.0",
"grunt-exec": "^1.0.1",
"grunt-sed": "^0.1.1",
"grunt-step": "^1.0.0",
"grunt-umd": "^2.3.6",
"grunt-webpack": "^1.0.14",
"istanbul-instrumenter-loader": "^1.0.0",
"jasmine-core": "^2.5.2",
"jasmine-jquery": "^2.1.1",
"jquery": "^3.1.0",
"karma": "^1.3.0",
"karma-chrome-launcher": "^2.0.0",
"karma-coverage": "^1.1.1",
"karma-coveralls": "^1.1.2",
"karma-firefox-launcher": "^1.0.0",
"karma-jasmine": "^1.0.2",
"karma-opera-launcher": "^1.0.0",
"karma-phantomjs-launcher": "^1.0.2",
"karma-safari-launcher": "^1.0.0",
"karma-sinon": "^1.0.5",
"karma-sourcemap-loader": "^0.3.7",
"karma-webpack": "^1.8.0",
"mocha": "^3.0.2",
"node-static": "^0.7.8",
"phantomjs-prebuilt": "^2.1.12",
"sinon": "^1.17.6",
"webpack": "^1.13.2",
"webpack-dev-server": "^1.16.1",
"yiewd": "^0.6.0"
},
"scripts": {
"build": "grunt",
"dev": "grunt dev",
"lint": "grunt lint",
"server": "grunt server",
"test": "karma start --single-run && grunt lint",
"test:watch": "karma start",
"test:ci": "./test/ci.sh"
},
"version": "0.22.0",
"main": "index.js"
}