-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
40 lines (40 loc) · 917 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
40
{
"author": "Matt McKegg <matt@wetsand.co.nz> (https://twitter.com/MattMcKegg)",
"name": "micro-css",
"description": "A CSS preprocessor that provides a simplified object orientated approach to css. The syntax is very similar to CSS but encourages better reuse of classes and discourages high specificity.",
"version": "2.0.2",
"repository": {
"type": "git",
"url": "git://github.com/mmckegg/micro-css.git"
},
"bin": {
"mcss": "bin/mcss.js"
},
"keywords": [
"css",
"preprocessor",
"mcss",
"less",
"stylesheet",
"styling",
"parser",
"svg"
],
"main": "index.js",
"license": "MIT",
"scripts": {
"test": "standard && tap test/*.js"
},
"dependencies": {
"optimist": "^0.6.1"
},
"devDependencies": {
"standard": "^14.1.0",
"tap": "^14.6.1",
"tape": "*"
},
"optionalDependencies": {},
"engines": {
"node": "*"
}
}