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
66 lines (66 loc) · 1.52 KB
/
package.json
File metadata and controls
66 lines (66 loc) · 1.52 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
60
61
62
63
64
65
66
{
"name": "atomizer",
"version": "3.9.1",
"description": "A tool for creating Atomic CSS, a collection of single purpose styling units for maximum reuse",
"main": "./src/atomizer.js",
"typings": "./index.d.ts",
"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": "mocha tests/ --recursive --reporter spec",
"cover": "nyc --report-dir artifacts -- mocha tests/ --recursive --reporter spec",
"lint": "eslint --ext .js .",
"lint:fix": "eslint --ext .js . --fix"
},
"bin": {
"atomizer": "./bin/atomizer"
},
"engines": {
"node": ">=10.0"
},
"preferGlobal": true,
"dependencies": {
"chalk": "^2.0.0",
"chokidar": "^3.0.0",
"commander": "^2.19.0",
"lodash": "^4.17.11",
"minimatch": "^3.0.4",
"xregexp": "^4.0.0"
},
"devDependencies": {
"chai": "^4.2.0",
"coveralls": "^3.0.2",
"eslint": "^7.12.1",
"eslint-plugin-mocha": "^8.0.0",
"nyc": "^15.1.0",
"mocha": "^8.2.0"
},
"repository": {
"type": "git",
"url": "git://github.com/acss-io/atomizer.git"
},
"keywords": [
"atomic",
"atomize",
"atomizer",
"atomizr",
"css"
],
"license": "BSD-3-Clause",
"bugs": {
"url": "https://github.com/acss-io/atomizer/issues"
},
"homepage": "https://github.com/acss-io/atomizer"
}