-
Notifications
You must be signed in to change notification settings - Fork 12
Expand file tree
/
Copy pathpackage.json
More file actions
49 lines (49 loc) · 1.54 KB
/
package.json
File metadata and controls
49 lines (49 loc) · 1.54 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
41
42
43
44
45
46
47
48
49
{
"name": "gel-grid",
"version": "7.1.4",
"description": "A flexible code implementation of the GEL Grid",
"main": "_grid.scss",
"scripts": {
"build": "npm run build:compressed && npm run build:expanded && npm run build:demo",
"build:compressed": "sass --load-path=node_modules/ --style=compressed --no-source-map src/gel-grid.scss dist/gel-grid.min.css",
"build:expanded": "sass --load-path=node_modules/ --style=expanded --no-source-map src/gel-grid.scss dist/gel-grid.css",
"build:demo": "sass --load-path=node_modules/ --load-path=docs/assets/sass --style=expanded --no-source-map docs/assets/sass:docs/assets/css",
"prettier": "prettier . '!**/*.md' '!bookmarklets/*.js' '!**/*.min.*' --write",
"test": "npm run prettier && npm run vitest",
"vitest": "vitest run",
"watch": "sass --watch --load-path=node_modules/ --load-path=docs/assets/sass --style=expanded --no-source-map docs/assets/sass:docs/assets/css"
},
"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",
"dependencies": {
"gel-sass-tools": "4.1.6",
"sass-mq": "7.0.0"
},
"devDependencies": {
"jsdom": "29.1.1",
"prettier": "3.8.3",
"sass": "1.100.0",
"vitest": "4.1.7"
}
}