-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
39 lines (39 loc) · 993 Bytes
/
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
{
"name": "bootstrap-breakpoints",
"version": "1.0.0",
"description": "Easy way to determine current bootstrap media query breakpoint",
"main": "src/bootstrap-breakpoints.js",
"repository": {
"type": "git",
"url": "https://github.com/vxsx/bootstrap-breakpoints.git"
},
"scripts": {
"test": "gulp && ./node_modules/karma/bin/karma start --single-run --browsers PhantomJS"
},
"keywords": [
"bootstrap",
"responsive",
"media",
"query",
"breakpoints"
],
"author": "Vadim Sikora",
"license": "MIT",
"devDependencies": {
"gulp": "^3.8.10",
"gulp-jscs": "^1.3.1",
"gulp-jshint": "^1.9.0",
"gulp-util": "^3.0.1",
"gulp-autoprefixer": "^2.0.0",
"gulp-sass": "^1.2.4",
"jasmine-core": "^2.1.3",
"karma": "^0.12.28",
"karma-chrome-launcher": "^0.1.7",
"karma-coverage": "^0.2.7",
"karma-jasmine": "^0.3.3",
"karma-phantomjs-launcher": "^0.1.4"
},
"dependencies": {
"jquery": "^3.1.1"
}
}