-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
69 lines (69 loc) · 2.12 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
{
"name": "viewportjs",
"version": "5.0.0",
"description": "ViewportJS is built on top of `window.matchMedia` and provides valuable features that enable more structure when querying and subscribing to media queries.",
"author": "Ryan Fitzer",
"readmeFilename": "readme.md",
"license": "MIT",
"main": "index.js",
"unpkg": "./dist/viewport.min.js",
"contributors": [
"Derek Pittsinger (https://github.com/derekpitt)"
],
"repository": {
"type": "git",
"url": "https://github.com/ryanfitzer/ViewportJS.git"
},
"scripts": {
"build": "npm run toc && rm -rf ./dist && grunt --verbose",
"checkpkg": "npm pack && tar -xvzf *.tgz && rm -rf package *.tgz",
"demo": "open ./demo/index.html &",
"demo:ff": "open -a 'Firefox' './demo/index.html'",
"demo:safari": "open -a 'Safari' ./demo/index.html",
"demo:chrome": "open -a 'Google Chrome' ./demo/index.html",
"karma": "karma start --single-run",
"mocha": "mocha --watch test/api-node.js",
"prepublishOnly": "npm run build",
"test": "mocha test/api-node.js && karma start --single-run",
"test:travis": "mocha test/api-node.js && karma start --single-run --browsers ChromeHeadless,Firefox",
"toc": "doctoc README.md --github",
"lint": "eslint index.js"
},
"files": [
"dist",
"LICENSE",
"README.md",
"index.js"
],
"keywords": [
"@media",
"breakpoints",
"css",
"media",
"media query",
"query",
"responsive"
],
"devDependencies": {
"chai": "^4.2.0",
"doctoc": "^2.2.0",
"eslint": "^8.21.0",
"eslint-plugin-compat": "^4.0.2",
"grunt": "^1.0.4",
"grunt-contrib-copy": "^1.0.0",
"grunt-contrib-uglify": "^5.2.2",
"karma": "^6.4.0",
"karma-chai": "^0.1.0",
"karma-chrome-launcher": "^3.0.0",
"karma-coverage": "^2.0.0",
"karma-detect-browsers": "^2.3.3",
"karma-edge-launcher": "^0.4.2",
"karma-firefox-launcher": "^2.1.2",
"karma-ie-launcher": "^1.0.0",
"karma-mocha": "^2.0.1",
"karma-opera-launcher": "^1.0.0",
"karma-safari-launcher": "^1.0.0",
"karma-safaritechpreview-launcher": "^2.0.2",
"mocha": "^10.0.0"
}
}