-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
90 lines (90 loc) · 2.82 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
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
{
"name": "@ibm/plex",
"description": "The package of IBM’s typeface, IBM Plex",
"version": "6.1.0",
"repository": "https://github.com/ibm/plex.git",
"license": "OFL-1.1",
"keywords": [
"eyeglass-module"
],
"bugs": {
"url": "https://github.com/ibm/plex/issues"
},
"files": [
"css",
"variants",
"examples",
"scss",
"IBM-Plex-*/**/woff2",
"IBM-Plex-*/**/woff",
"!IBM-Plex-Sans-KR/fonts/hinted/**/woff2",
"!IBM-Plex-Sans-KR/fonts/hinted/**/woff",
"!IBM-Plex-Sans-JP/fonts/hinted/**/woff2",
"!IBM-Plex-Sans-JP/fonts/hinted/**/woff"
],
"scripts": {
"clean": "rimraf css scss deploy-preview",
"build": "yarn clean && yarn build:scss && yarn build:css && yarn build:deploy-preview",
"build:zip": "yarn build && node ./scripts/prepare-zip.js && sh scripts/zip.sh",
"build:css": "node ./scripts/compile-css.js",
"build:scss": "node ./scripts/generate-scss.js",
"build:deploy-preview": "gulp build:deploy-preview",
"test": "parcel serve ./deploy-preview/index.html",
"precommit": "lint-staged",
"prettier": "prettier --write \"**/*.{scss}\"",
"prepare": "husky install && yarn build",
"test:e2e:local": "start-server-and-test 'http-server -c-1 deploy-preview --silent' 8080 'percy exec --config cypress/.percy.json -- cypress run --config-file cypress/cypress.json'",
"test:e2e:local:no-percy": "start-server-and-test 'http-server -c-1 deploy-preview --silent' 8080 'cypress run --config-file cypress/cypress.json'"
},
"devDependencies": {
"@commitlint/cli": "^17.0.1",
"@commitlint/config-conventional": "^17.0.0",
"@parcel/optimizer-cssnano": "2.0.0-nightly.611",
"@parcel/optimizer-htmlnano": "2.0.0-nightly.611",
"@parcel/packager-css": "2.0.0-nightly.611",
"@parcel/packager-html": "2.0.0-nightly.611",
"@parcel/transformer-css": "2.0.0-nightly.611",
"@parcel/transformer-html": "2.0.0-nightly.611",
"@parcel/transformer-postcss": "2.0.0-nightly.611",
"@parcel/transformer-posthtml": "2.0.0-nightly.611",
"@percy/cli": "^1.2.1",
"@percy/cypress": "^3.1.1",
"archiver": "^3.0.0",
"cypress": "^9.7.0",
"del": "^6.1.1",
"fs-extra": "^7.0.0",
"gulp": "^4.0.2",
"http-server": "^14.1.0",
"husky": "^7.0.4",
"lint-staged": "^12.4.2",
"parcel": "^2.0.0-beta.1",
"postcss": "^8.2.1",
"prettier": "^1.7.4",
"rimraf": "^2.6.2",
"sass": "^1.51.0",
"start-server-and-test": "^1.14.0"
},
"prettier": {
"printWidth": 80,
"singleQuote": true,
"tabWidth": 2,
"semi": true,
"trailingComma": "es5"
},
"lint-staged": {
"**/*.js": [
"prettier",
"git add"
],
"**/*.scss": [
"prettier",
"git add"
]
},
"eyeglass": {
"exports": false,
"name": "ibm-plex",
"sassDir": "scss",
"needs": "*"
}
}