forked from selectize/selectize.js
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
63 lines (63 loc) · 1.6 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
{
"name": "selectize",
"keywords": [
"select",
"ui",
"form",
"input",
"control",
"autocomplete",
"tagging",
"tag"
],
"main": "dist/js/selectize.js",
"description": "Selectize is a jQuery-based custom <select> UI control. Useful for tagging, contact lists, country selectors, etc.",
"version": "0.12.4",
"author": "Brian Reavis <[email protected]>",
"license": "Apache-2.0",
"repository": {
"type": "git",
"url": "git://github.com/selectize/selectize.js.git"
},
"dependencies": {
"jquery": "^1.7.0",
"microplugin": "0.0.3",
"sifter": "^0.5.1"
},
"devDependencies": {
"chai": "^3.5.0",
"grunt": "~1.0.1",
"grunt-bower-task": "^0.4.0",
"grunt-cli": "^1.2.0",
"grunt-contrib-clean": "^1.0.0",
"grunt-contrib-concat": "^1.0.1",
"grunt-contrib-connect": "1.x",
"grunt-contrib-copy": "^1.0.0",
"grunt-contrib-less": "^1.4.0",
"grunt-contrib-uglify": "^2.0.0",
"grunt-contrib-watch": "1.x",
"grunt-replace": "^1.0.1",
"karma": "^1.3.0",
"karma-chai": "^0.1.0",
"karma-chrome-launcher": "^2.0.0",
"karma-coverage": "^1.1.1",
"karma-coveralls": "^1.1.2",
"karma-firefox-launcher": "^1.0.0",
"karma-mocha": "^1.3.0",
"karma-mocha-reporter": "^2.2.0",
"karma-phantomjs-launcher": "^1.0.1",
"karma-safari-launcher": "^1.0.0",
"karma-sauce-launcher": "^1.1.0",
"mocha": "^3.1.0"
},
"scripts": {
"test": "karma start",
"build": "make",
"prestart": "npm run build",
"start": "grunt serve",
"grunt": "grunt"
},
"engines": {
"node": "*"
}
}