-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathpackage.json
42 lines (42 loc) · 966 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
41
42
{
"name": "gemma",
"version": "1.1.0",
"description": "A lightweight CSS library",
"style": "public/gemma.min.css",
"browser": "public/gemma.min.css",
"main": "src/gemma.css",
"scripts": {
"compile": "postcss -c .postcss.json",
"lint": "stylelint './src/**/*.css'"
},
"repository": {
"type": "git",
"url": "https://github.com/colepeters/gemma.git"
},
"keywords": [
"css",
"postcss",
"modular",
"functional",
"atomic",
"design"
],
"author": "Cole Peters",
"license": "MIT",
"bugs": {
"url": "https://github.com/colepeters/gemma/issues"
},
"homepage": "https://github.com/colepeters/gemma#readme",
"devDependencies": {
"cssnano": "^3.7.4",
"postcss-cli": "^2.6.0",
"postcss-cssnext": "^2.7.0",
"postcss-import": "^8.1.2",
"postcss-reporter": "^1.4.1",
"postcss-url": "~5.1.1",
"stylelint": "^7.1.0"
},
"dependencies": {
"normalize.css": "^4.2.0"
}
}