forked from IBM/plex
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
59 lines (59 loc) · 1.31 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
{
"name": "@ibm/type",
"description": "An opinionated type for all IBM experiences, including the IBM Plex typeface.",
"version": "0.4.1",
"repository": "https://github.com/ibm/type.git",
"license": "OFL-1.1 AND Apache-2.0",
"files": [
"css",
"fonts",
"scss"
],
"bugs": {
"url": "https://github.com/ibm/type/issues"
},
"scripts": {
"build": "gulp clean && gulp",
"generate": "node scripts/generate.js",
"precommit": "lint-staged",
"prettier": "prettier --write \"**/*.{js,scss}\"",
"prepare": "yarn build",
"start": "yarn build && gulp watch",
"test": "jest"
},
"dependencies": {},
"devDependencies": {
"@ibm/grid": "^0.2.3",
"browser-sync": "^2.18.12",
"del": "^3.0.0",
"fs-extra": "^4.0.2",
"gulp": "^3.9.1",
"gulp-clean-css": "^3.7.0",
"gulp-rename": "^1.2.2",
"gulp-sass": "^3.1.0",
"husky": "^0.14.3",
"jest": "^21.2.1",
"lint-staged": "^4.3.0",
"menuspy": "^1.1.2",
"node-sass": "^4.5.3",
"prettier": "^1.7.4",
"rimraf": "^2.6.2"
},
"prettier": {
"printWidth": 80,
"singleQuote": true,
"tabWidth": 2,
"semi": true,
"trailingComma": "es5"
},
"lint-staged": {
"**/*.js": [
"prettier",
"git add"
],
"**/*.scss": [
"prettier",
"git add"
]
}
}