forked from devlint/gridlex
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
35 lines (35 loc) · 889 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
{
"name": "gridlex",
"description": "Just a Flexbox Grid System",
"keywords": [
"css",
"grid",
"col",
"sass",
"scss",
"mediaqueries",
"flexbox"
],
"url": "https://github.com/devlint/gridlex",
"homepage": "http://gridlex.devlint.fr",
"author": "https://github.com/devlint",
"version": "2.7.1",
"repository": {
"type": "git",
"url": "[email protected]:devlint/gridlex.git"
},
"license": "MIT",
"main": "dist/gridlex.min.css",
"sass": "src/gridlex.scss",
"style": "docs/gridlex.css",
"scripts": {
"version": "npm run dist && git add -A .",
"dist": "node-sass src/gridlex.scss --sourceMap dist/ -o dist/ && postcss dist/gridlex.css > dist/gridlex.min.css && npm run docs",
"docs": "cp -R dist/*.* docs"
},
"devDependencies": {
"cssnano": "^3.10.0",
"node-sass": "^4.5.3",
"postcss-cli": "^4.1.0"
}
}