-
Notifications
You must be signed in to change notification settings - Fork 19
/
Copy pathpackage.json
37 lines (37 loc) · 887 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
{
"name": "css-mediaquery",
"version": "0.1.2",
"description": "Parses and determines if a given CSS Media Query matches a set of values.",
"main": "index.js",
"scripts": {
"test": "istanbul cover -- ./node_modules/mocha/bin/_mocha test/ --reporter spec"
},
"repository": {
"type": "git",
"url": "git://github.com/ericf/css-mediaquery.git"
},
"keywords": [
"css",
"media",
"query",
"mediaquery",
"media-query",
"mobile",
"parse",
"match"
],
"author": "Eric Ferraiuolo <eferraiuolo@gmail.com>",
"contributors": [
"Tilo Mitra <tilomitra@gmail.com>"
],
"license": "BSD-3-Clause",
"bugs": {
"url": "https://github.com/ericf/css-mediaquery/issues"
},
"homepage": "https://github.com/ericf/css-mediaquery",
"devDependencies": {
"mocha": "~1.16.2",
"chai": "~1.8.1",
"istanbul": "~0.2.3"
}
}