forked from acss-io/atomizer
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
59 lines (59 loc) · 1.43 KB
/
package.json
File metadata and controls
59 lines (59 loc) · 1.43 KB
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
{
"name": "atomizer",
"version": "3.3.3",
"description": "A tool for creating Atomic CSS, a collection of single purpose styling units for maximum reuse",
"main": "./src/atomizer.js",
"contributors": [
{
"name": "Renato Iwashima",
"email": "renatoi@yahoo-inc.com"
},
{
"name": "Steve Carlson",
"email": "yasteve@yahoo-inc.com"
},
{
"name": "Thierry Koblentz",
"email": "thierryk@yahoo-inc.com"
}
],
"scripts": {
"test": "./node_modules/.bin/mocha tests/ --recursive --reporter spec",
"cover": "node node_modules/istanbul/lib/cli.js cover --dir artifacts -- ./node_modules/mocha/bin/_mocha tests/ --recursive --reporter spec",
"lint": "./node_modules/.bin/jshint src tests"
},
"bin": {
"atomizer": "./bin/atomizer"
},
"preferGlobal": true,
"dependencies": {
"chalk": "^1.0.0",
"commander": "^2.8.0",
"lodash": "^3.6.0",
"object-assign": "^4.0.0",
"xregexp": "^3.0.0"
},
"devDependencies": {
"chai": "^3.4.0",
"coveralls": "^2.11.2",
"istanbul": "^0.4.0",
"jshint": "^2.6.3",
"mocha": "^2.2.1"
},
"repository": {
"type": "git",
"url": "git://github.com/yahoo/atomizer.git"
},
"keywords": [
"atomic",
"atomize",
"atomizer",
"atomizr",
"css"
],
"license": "BSD",
"bugs": {
"url": "https://github.com/yahoo/atomizer/issues"
},
"homepage": "https://github.com/yahoo/atomizer"
}