-
Notifications
You must be signed in to change notification settings - Fork 9
/
package.json
51 lines (51 loc) · 1.08 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
{
"name": "logo.svg",
"version": "1.0.1",
"description": "Generate a svg logo, then you can embed it in you README.md",
"main": "./lib/index.js",
"bin": {
"logo": "./bin/logo.js"
},
"author": {
"name": "bubkoo",
"email": "[email protected]"
},
"license": "MIT",
"scripts": {
"lint": "jshint ./lib/*.js ./bin/*.js",
"pretest": "npm run lint",
"test": "echo \"Error: no test specified\"",
"prepublish": "npm test"
},
"keywords": [
"logo",
"svg",
"generate",
"generator",
"cli",
"graphics",
"fonts",
"embed",
"README"
],
"repository": {
"type": "git",
"url": "git+https://github.com/bubkoo/logo.svg.git"
},
"bugs": {
"url": "https://github.com/bubkoo/logo.svg/issues"
},
"homepage": "https://github.com/bubkoo/logo.svg#readme",
"dependencies": {
"ansi.js": "0.0.5",
"loadrc": "^1.0.0",
"minimist": "^1.2.0",
"mkdirp": "^0.5.1",
"path-is-absolute": "^1.0.0",
"text2svg": "^1.0.0",
"update-notifier": "^0.6.3"
},
"devDependencies": {
"jshint": "^2.9.1"
}
}