forked from IBM/plex
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
80 lines (80 loc) · 2.15 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
{
"name": "@ibm/plex",
"description": "The package of IBM’s typeface, IBM Plex",
"main": "css/ibm-plex.css",
"version": "6.0.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",
"build": "yarn run clean && yarn run build:scss && yarn run build:css",
"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",
"test": "parcel serve ./test/index.html",
"precommit": "lint-staged",
"prettier": "prettier --write \"**/*.{scss}\"",
"prepare": "yarn build"
},
"devDependencies": {
"@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",
"archiver": "^3.0.0",
"fs-extra": "^7.0.0",
"husky": "^0.14.3",
"lint-staged": "^4.3.0",
"node-sass": "^4.7.2",
"parcel": "^2.0.0-beta.1",
"postcss": "^8.2.1",
"prettier": "^1.7.4",
"rimraf": "^2.6.2",
"sass": "^1.26.10"
},
"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": "*"
}
}