-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
36 lines (36 loc) · 1.37 KB
/
Copy pathpackage.json
File metadata and controls
36 lines (36 loc) · 1.37 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
{
"name": "matrix",
"version": "3.0.0",
"description": "Matrix is a CSS framework based on the CSS Grid Layout.",
"directories": {
"doc": "docs"
},
"scripts": {
"build": "node-sass src/matrix.scss dist/matrix.css --source-map dist/matrix.css.map && npm run minify",
"watch": "node-sass --watch src/matrix.scss dist/matrix.css --source-map dist/matrix.css.map & npm run minify",
"minify": "node-sass src/matrix.scss dist/matrix.min.css --output-style compressed",
"docs": "npm run docs:sass && eleventy",
"docs:sass": "node-sass src/matrix.scss docs/css/matrix.css && node-sass docs/_scss/docs.scss docs/css/docs.css",
"serve": "npm run serve:sass & eleventy --serve",
"serve:sass": "node-sass --watch src/matrix.scss docs/css/matrix.css & node-sass --watch docs/_scss/docs.scss docs/css/docs.css",
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/maelquerre/matrix.git"
},
"keywords": [],
"author": "Maël Querré & Alex Dean",
"license": "ISC",
"bugs": {
"url": "https://github.com/maelquerre/matrix/issues"
},
"homepage": "https://github.com/maelquerre/matrix#readme",
"dependencies": {},
"devDependencies": {
"@11ty/eleventy": "^0.9.0",
"@11ty/eleventy-plugin-syntaxhighlight": "^2.0.3",
"node-sass": "^4.13.1",
"sass": "^1.23.7"
}
}