forked from seiyria/bootstrap-slider
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
66 lines (66 loc) · 1.89 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
{
"name": "bootstrap-slider",
"version": "4.10.4",
"description": "Slider view component for Twitter Bootstrap.",
"main": "js/bootstrap-slider.js",
"scripts": {
"prepublish": "bower install",
"postpublish": "sh ./scripts/postpublish.sh",
"test": "grunt test"
},
"repository": {
"type": "git",
"url": "git://github.com/seiyria/bootstrap-slider.git"
},
"author": "",
"license": "BSD",
"readmeFilename": "README.md",
"gitHead": "67eb8fe3c26205efc94ae95b3ef37a469eef0b81",
"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": "latest",
"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": "bower_components/modernizr/modernizr.js",
"jquery": "bower_components/jquery/dist/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": "bower_components/bootstrap/dist/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"
}
}