forked from seiyria/bootstrap-slider
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
90 lines (90 loc) · 2.33 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
{
"name": "bootstrap-slider",
"version": "5.1.1",
"description": "Slider view component for Twitter Bootstrap.",
"main": "js/bootstrap-slider.js",
"scripts": {
"prepublish": "bower install",
"postpublish": "sh ./scripts/postpublish.sh",
"test": "grunt test"
},
"homepage": "http://github.com/seiyria/bootstrap-slider",
"repository": {
"type": "git",
"url": "git://github.com/seiyria/bootstrap-slider.git"
},
"bugs": {
"url": "http://github.com/seiyria/bootstrap-slider/issues"
},
"author": "bootstrap-slider ",
"contributors": [
{
"name": "Kyle Kemp",
"twitter": "@seiyria",
"github": "seiyria"
},
{
"name": "Rohit Kalkur",
"twitter": "@Rovolutionary",
"github": "rovolution"
}
],
"keywords": [
"slider",
"bootstrap",
"twitter",
"slide"
],
"license": "MIT",
"readmeFilename": "README.md",
"gitHead": "67eb8fe3c26205efc94ae95b3ef37a469eef0b81",
"dependencies": {},
"engine": {},
"devDependencies": {
"grunt": "~0.4.4",
"grunt-contrib-uglify": "~0.2.4",
"grunt-contrib-jshint": "~0.6.4",
"grunt-contrib-watch": "~0.5.3",
"grunt-contrib-connect": "~0.5.0",
"grunt-contrib-jasmine": "~0.5.2",
"grunt-template": "~0.2.0",
"grunt-open": "~0.2.2",
"bower": "1.4.1",
"grunt-contrib-less": "~0.7.0",
"grunt-header": "^1.0.0",
"grunt-contrib-clean": "^0.6.0",
"grunt-bump": "0.0.16"
},
"gruntConfig": {
"devPort": 9000,
"js": {
"modernizr": "dependencies/js/modernizr.js",
"jquery": "dependencies/js/jquery.min.js",
"bindPolyfill": "test/phantom_bind_polyfill.js"
},
"less": {
"slider": "less/bootstrap-slider.less",
"rules": "less/rules.less",
"variables": "less/variables.less"
},
"css": {
"bootstrap": "dependencies/css/bootstrap.min.css",
"slider": "css/bootstrap-slider.css"
},
"tpl": {
"SpecRunner": "tpl/SpecRunner.tpl",
"index": "tpl/index.tpl"
},
"temp": {
"js": "temp/bootstrap-slider.min.js",
"css": "temp/bootstrap-slider.css",
"cssMin": "temp/bootstrap-slider.min.css"
},
"dist": {
"js": "dist/bootstrap-slider.min.js",
"css": "dist/css/bootstrap-slider.css",
"cssMin": "dist/css/bootstrap-slider.min.css"
},
"spec": "test/specs/**/*.js"
}
}