-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
75 lines (75 loc) · 2.08 KB
/
package.json
File metadata and controls
75 lines (75 loc) · 2.08 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
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
{
"name": "ttf-module-loader",
"version": "1.0.0",
"description": "Webpack Loader to use TTF files as CSS Modules",
"main": "index.js",
"license": "MIT",
"scripts": {
"start": "rollup -c -w",
"build": "rollup -c",
"generate:example": "webpack --config example/config.js --mode production",
"example": "node example/dist/main.js"
},
"engines": {
"node": ">=8"
},
"author": {
"name": "Székely Ádám",
"url": "https://github.com/enteocode",
"email": "stereotribe@hotmail.com"
},
"keywords": [
"ttfautohint",
"webfont",
"webpack",
"css",
"ttf",
"loader",
"font-face"
],
"devDependencies": {
"babel-core": "^6.26.3",
"babel-eslint": "^8.2.3",
"babel-loader": "^7.1.4",
"babel-plugin-transform-class-properties": "^6.24.1",
"babel-plugin-transform-object-rest-spread": "^6.26.0",
"babel-preset-env": "^1.7.0",
"babel-preset-flow": "^6.23.0",
"css-loader": "^0.28.11",
"eslint": "^4.19.1",
"eslint-plugin-flowtype": "^2.49.3",
"mini-css-extract-plugin": "^0.4.0",
"rollup": "^0.60.7",
"rollup-plugin-babel": "^3.0.4",
"rollup-plugin-json": "^3.0.0",
"rollup-plugin-node-resolve": "^3.3.0",
"style-loader": "^0.21.0",
"uglify-es": "^3.3.9",
"webpack": "^4.12.0",
"webpack-cli": "^3.0.8"
},
"dependencies": {
"loader-utils": "^1.1.0",
"opentype.js": "^0.8.0",
"ttf2eot": "^2.0.0",
"ttf2svg": "^1.2.0",
"ttf2woff": "^2.0.1",
"ttf2woff2": "^2.0.3",
"ttfautohint": "^1.3.0"
},
"peerDependencies": {
"webpack": ">=2",
"css-loader": ">=0.2"
},
"files": [
"index.d.ts",
"index.js"
],
"bugs": {
"url": "https://github.com/enteocode/ttf-module-loader/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/enteocode/ttf-module-loader.git"
}
}