-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
53 lines (53 loc) · 1.51 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
{
"name": "opentype-svg-loader",
"version": "0.3.15",
"description": "A loader for webpack that lets you import TrueType and OpenType fonts converted to a SVG string.",
"main": "index.js",
"scripts": {
"release": "np",
"build-examples": "node examples/build-examples.js",
"build-example-svg-output": "node example-svg-output/build-svg-output.js",
"prettier": "prettier --single-quote --trailing-comma es5 --write \"!(node_modules)/**/!(main.bundle).js\" \"*.js\"",
"test": "jest",
"precommit": "npm run prettier && npm run test && npm run build-examples && npm run build-example-svg-output",
"travis:test": "npm run test && npm run build-examples && npm run build-example-svg-output"
},
"repository": {
"type": "git",
"url": "git+https://github.com/schapka/opentype-svg-loader.git"
},
"keywords": [
"opentype",
"truetype",
"svg",
"webpack",
"loader"
],
"files": [
"index.js",
"lib/",
"README.md",
"LICENSE"
],
"author": "René Schapka",
"license": "MIT",
"bugs": {
"url": "https://github.com/schapka/opentype-svg-loader/issues"
},
"homepage": "https://github.com/schapka/opentype-svg-loader#readme",
"devDependencies": {
"glob": "7.1.1",
"husky": "^0.13.3",
"jest": "^19.0.2",
"np": "^2.13.1",
"prettier": "^0.22.0",
"webpack": "^2.3.2"
},
"dependencies": {
"loader-utils": "^1.1.0",
"mustache": "^2.3.0",
"opentype.js": "^0.6.9",
"shortid": "^2.2.8",
"webpack-merge": "^4.1.0"
}
}