-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
37 lines (37 loc) · 1.06 KB
/
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
{
"name": "funkcss",
"version": "0.10.0",
"description": "Atomic CSS lib",
"style": "dist/funkcss.min.css",
"main": "dist/funkcss.min.css",
"repository": {
"type": "git",
"url": "git+https://github.com/filipelinhares/funkcss.git"
},
"keywords": [
"css",
"functional",
"atomic"
],
"author": "Filipe Linhares <[email protected]> (http://filipelinhares.com)",
"license": "MIT",
"bugs": {
"url": "https://github.com/filipelinhares/funkcss/issues"
},
"homepage": "https://github.com/filipelinhares/funkcss#readme",
"scripts": {
"compile": "postcss --config postcss.config.js -o ./dist/funkcss.css ./lib/index.css",
"minify": "postcss --no-map -u cssnano -o ./dist/funkcss.min.css ./dist/funkcss.css",
"build": "npm run compile && npm run minify"
},
"devDependencies": {
"cssnano": "^7.0.4",
"postcss-cli": "^11.0.0",
"postcss-for": "^2.1.1",
"postcss-import": "^16.1.0",
"postcss-nested": "^6.2.0",
"postcss-preset-env": "^9.6.0",
"postcss-url": "^10.1.3",
"stylelint": "^16.7.0"
}
}