-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
40 lines (40 loc) · 1.32 KB
/
package.json
File metadata and controls
40 lines (40 loc) · 1.32 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
{
"name": "grix",
"version": "0.0.1",
"description": "A basic flexbox-based grid",
"main": "dist/grix.css",
"repository": {
"type": "git",
"url": "https://github.com/websperts/grix.git"
},
"keywords": [
"grix",
"grid"
],
"author": "websperts <hello@websperts.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/websperts/grix/issues"
},
"homepage": "https://github.com/websperts/grix",
"devDependencies": {
"autoprefixer-cli": "^1.0.0",
"copy": "^0.3.0",
"cssnano-cli": "^1.0.5",
"html-minifier": "^3.1.0",
"mkdirp": "^0.5.1",
"node-sass": "^3.9.3",
"prepend-file-cli": "^1.0.4",
"pug-cli": "^1.0.0-alpha6",
"rimraf": "^2.5.4",
"sass-lint": "^1.9.1"
},
"scripts": {
"clean": "rimraf dist docs tmp && mkdirp dist docs tmp",
"css": "node-sass src/grix.scss | autoprefixer-cli | cssnano > dist/grix.css && prepend dist/grix.css \"/*! Grix v$npm_package_version */\"",
"docs": "pug -p src/docs.pug < src/docs.pug > tmp/index.html && html-minifier --collapse-whitespace --remove-attribute-quotes tmp/index.html > docs/index.html",
"lint": "sass-lint -c .sass-lint.yml -v --max-warnings 0 'src/**/*.scss'",
"build": "npm run lint && npm run clean && npm run css && npm run docs && copy dist/**/* docs/",
"test": "npm run build"
}
}