forked from Formstone/Formstone
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
112 lines (112 loc) · 3.09 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
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
{
"name": "formstone",
"id": "formstone",
"codename": "formstone",
"realname": "Formstone",
"version": "1.2.1",
"description": "Library of modular front end components.",
"repository": {
"type": "git",
"url": "https://github.com/Formstone/Formstone/"
},
"homepage": "http://formstone.it/",
"homepage_short": "formstone.it",
"demo": "http://formstone.it/demo/",
"license": "GPL-3.0",
"main": "dist/js/core.js",
"author": {
"name": "Ben Plum",
"email": "mr@benplum.com",
"url": "http://www.benplum.com"
},
"dependencies": {
"jquery": ">=1.11.1"
},
"devDependencies": {
"autoprefixer": "^6.3.6",
"bower": "^1.7.9",
"grunt": "^1.0.1",
"grunt-banner": "^0.6.0",
"grunt-contrib-concat": "^1.0.1",
"grunt-contrib-copy": "^1.0.0",
"grunt-contrib-jshint": "^1.0.0",
"grunt-contrib-less": "^1.3.0",
"grunt-contrib-uglify": "^2.0.0",
"grunt-contrib-watch": "^1.0.0",
"grunt-include-replace": "^5.0.0",
"grunt-modernizr": "^1.0.2",
"grunt-newer": "^1.2.0",
"grunt-npm2bower-sync": "^0.9.1",
"grunt-postcss": "^0.8.0",
"grunt-prettify": "^0.4.0",
"grunt-stripmq": "0.0.6",
"grunt-zetzer": "^2.0.0",
"less-plugin-clean-css": "^1.5.1",
"load-grunt-tasks": "^3.5.0"
},
"scripts": {
"postinstall": "node ./node_modules/bower/bin/bower install"
},
"site": {
"css": {
"demo/css/site.css": "demo/css/src/site.less",
"demo/css/site-ie8.css": "demo/css/src/ie/ie8.less",
"demo/css/site-ie9.css": "demo/css/src/ie/ie9.less",
"demo/css/demo.css": "demo/css/src/demo.less"
},
"js": {
"demo/js/site.js": [
"dist/js/lib/utils.js",
"demo/bower/jquery/dist/jquery.min.js",
"demo/bower/prism/prism.js",
"dist/js/core.js",
"dist/js/analytics.js",
"dist/js/asap.js",
"dist/js/background.js",
"dist/js/carousel.js",
"dist/js/checkbox.js",
"dist/js/cookie.js",
"dist/js/dropdown.js",
"dist/js/equalize.js",
"dist/js/lightbox.js",
"dist/js/mediaquery.js",
"dist/js/pagination.js",
"dist/js/navigation.js",
"dist/js/number.js",
"dist/js/range.js",
"dist/js/scrollbar.js",
"dist/js/swap.js",
"dist/js/tabs.js",
"dist/js/tooltip.js",
"dist/js/touch.js",
"dist/js/transition.js",
"dist/js/upload.js",
"demo/js/src/site.js",
"demo/js/src/modules/demo.js"
],
"demo/js/site-ie8.js": [
"demo/bower/html5shiv/dist/html5shiv.min.js",
"demo/bower/html5shiv/dist/html5shiv-printshiv.min.js",
"demo/js/src/ie/matchMedia.ie8.js"
],
"demo/js/site-ie9.js": [
"demo/js/src/ie/matchMedia.ie9.js"
],
"demo/js/demo.js": [
"demo/js/src/modules/demo.js"
]
},
"js_ignores": [
"demo/js/src/ie/*/",
"demo/js/src/lib/*/"
],
"vars": {
"mq_min_ht": "800",
"mq_min_xs": "320",
"mq_min_sm": "500",
"mq_min_md": "740",
"mq_min_lg": "980",
"mq_min_xl": "1220"
}
}
}