forked from tuupola/jquery_chained
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
44 lines (44 loc) · 1.24 KB
/
package.json
File metadata and controls
44 lines (44 loc) · 1.24 KB
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
{
"name": "jquery-chained",
"version": "1.0.0",
"engines": {
"node": ">= 0.8.0"
},
"repository": {
"type": "git",
"url": "git@github.com:tuupola/jquery_chained.git"
},
"author": "Mika Tuupola <tuupola@appelsiini.net>",
"scripts": {
"test": "grunt test"
},
"devDependencies": {
"grunt": "~0.4.1",
"grunt-contrib-jshint": "~0.6.4",
"grunt-contrib-uglify": "~0.2.4",
"grunt-contrib-jasmine": "~0.5.2",
"grunt-contrib-watch": "~0.5.3",
"load-grunt-tasks": "^0.4.0",
"time-grunt": "^0.2.10"
},
"dependencies": {
},
"description": "Simple chained selects. You can choose from two different versions. Normal version uses uses classnames of select options to decide content of child select. It does not make any external AJAX(J) queries. Remote version makes external query and builds the child select from returned JSON response.",
"bugs": {
"url": "https://github.com/tuupola/jquery_chained/issues"
},
"homepage": "http://www.appelsiini.net/projects/chained",
"main": "Gruntfile.js",
"files": [
"jquery.chained.js",
"jquery.chained.remote.js"
],
"directories": {
"test": "test"
},
"keywords": [
"jquery-plugin",
"ecosystem:jquery"
],
"license": "MIT"
}