-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
38 lines (38 loc) · 820 Bytes
/
package.json
File metadata and controls
38 lines (38 loc) · 820 Bytes
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
{
"name": "eqcss-parse",
"version": "1.0.0",
"description": "Parse EQCSS files and return JavaScript that can apply the parsed queries directly to EQCSS.data bypassing EQCSS.load and the need to include the EQCSS syntax",
"main": "eqcss-parse.js",
"bin": {
"eqcss-parse": "index.js"
},
"keywords": [
"css",
"style",
"styles",
"eqcss",
"reprocessor",
"CSS reprocessor",
"element",
"container",
"query",
"queries",
"scoping",
"scoped",
"meta",
"this",
"parent",
"selector",
"selectors"
],
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1"
},
"author": "Tommy Hodgins",
"license": "MIT",
"dependencies": {
"minimist": "^1.2.0",
"read-file-stdin": "^0.2.1",
"write-file-stdout": "0.0.2"
}
}