-
Notifications
You must be signed in to change notification settings - Fork 11
/
Copy pathpackage.json
47 lines (47 loc) · 1.57 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
45
46
47
{
"name": "gel-typography",
"version": "5.2.0",
"description": "A flexible code implementation of the GEL Typography",
"main": "_typography.scss",
"scripts": {
"build": "npm run build:compressed && npm run build:expanded",
"build:compressed": "sass --style=compressed --no-source-map src/gel-typography.scss dist/gel-typography.min.css",
"build:expanded": "sass --style=expanded --no-source-map src/gel-typography.scss dist/gel-typography.css",
"pretest": "npm run pretest:without && npm run pretest:with",
"pretest:with": "sass --style=expanded --no-source-map test/test-with-large-fonts.scss test/test-with-large-fonts.css",
"pretest:without": "sass --style=expanded --no-source-map test/test-without-large-fonts.scss test/test-without-large-fonts.css",
"test": "npm run test:with && npm run test:without",
"test:with": "diff -u test/test-with-large-fonts-expected.css test/test-with-large-fonts.css",
"test:without": "diff -u test/test-without-large-fonts-expected.css test/test-without-large-fonts.css"
},
"repository": {
"type": "git",
"url": "https://github.com/bbc/gel-typography.git"
},
"keywords": [
"bbc",
"gel",
"typography"
],
"ignore": [
"**/.*",
"node_modules",
"test",
"tests",
"dist",
"src"
],
"author": "BBC",
"license": "MIT",
"bugs": {
"url": "https://github.com/bbc/gel-typography/issues"
},
"homepage": "https://github.com/bbc/gel-typography",
"devDependencies": {
"sass": "1.85.0",
"sass-mq": "6.0.0"
},
"dependencies": {
"gel-sass-tools": "3.4.0"
}
}