This repository has been archived by the owner on May 31, 2020. It is now read-only.
forked from shrhdk/text-to-svg
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
72 lines (72 loc) · 1.49 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
{
"name": "text-to-svg",
"version": "3.1.4",
"description": "Convert text to SVG path without native dependence.",
"main": "index.js",
"files": [
".gitignore",
"CHANGELOG.md",
"README.md",
"package.json",
"node_modules",
"gulpfile.js",
"index.js",
"build",
"src",
"test",
"fonts",
"bin"
],
"bin": {
"text-to-svg": "bin/text-to-svg"
},
"scripts": {
"test": "gulp test",
"test:html": "gulp test:html",
"clean": "gulp clean",
"lint": "gulp lint",
"build": "gulp build"
},
"repository": {
"type": "git",
"url": "https://github.com/shrhdk/text-to-svg"
},
"keywords": [
"fonts",
"glyph",
"graphics",
"SVG",
"text",
"vector"
],
"author": "Hideki Shiro",
"license": "MIT",
"bugs": {
"url": "https://github.com/shrhdk/text-to-svg/issues"
},
"homepage": "https://github.com/shrhdk/text-to-svg",
"dependencies": {
"commander": "^2.11.0",
"opentype.js": "0.11.0"
},
"devDependencies": {
"@babel/core": "^7.3.4",
"@babel/preset-env": "^7.3.4",
"@babel/register": "^7.0.0",
"browserify": "^16.2.3",
"del": "^3.0.0",
"eslint-plugin-arrow-function": "^2.0.0",
"eslint-plugin-classes": "^0.1.1",
"eslint-plugin-template-string": "^1.0.0",
"gulp": "^4.0.0",
"gulp-babel": "^8.0.0",
"gulp-eslint": "^5.0.0",
"gulp-mocha": "^6.0.0",
"vinyl-source-stream": "^2.0.0"
},
"babel": {
"presets": [
"@babel/preset-env"
]
}
}