-
Notifications
You must be signed in to change notification settings - Fork 11
/
package.json
44 lines (44 loc) · 1.11 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
38
39
40
41
42
43
44
{
"name": "gel-grid",
"version": "6.1.0",
"description": "A flexible code implementation of the GEL Grid",
"main": "_grid.scss",
"scripts": {
"build": "npm run css:compressed && npm run css:expanded",
"css:compressed": "sass --style=compressed --no-source-map src/gel-grid.scss dist/gel-grid.min.css",
"css:expanded": "sass --style=expanded --no-source-map src/gel-grid.scss dist/gel-grid.css",
"pretest": "sass --style=expanded --no-source-map test/test.scss test/test.css",
"test": "diff -u test/test-expected.css test/test.css",
"dist": "npm run build"
},
"repository": {
"type": "git",
"url": "https://github.com/bbc/gel-grid.git"
},
"keywords": [
"bbc",
"gel",
"grid"
],
"ignore": [
"**/.*",
"node_modules",
"test",
"tests",
"dist",
"bookmarklets"
],
"author": "BBC",
"license": "MIT",
"bugs": {
"url": "https://github.com/bbc/gel-grid/issues"
},
"homepage": "https://github.com/bbc/gel-grid",
"devDependencies": {
"sass": "1.75.0",
"sass-mq": "6.0.0"
},
"dependencies": {
"gel-sass-tools": "3.1.2"
}
}