forked from mrmlnc/svg2sprite-cli
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
51 lines (51 loc) · 1.06 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": "@wizbii/svg2sprite-cli",
"version": "2.1.0",
"description": "",
"license": "MIT",
"repository": "mrmlnc/svg2sprite-cli",
"author": {
"name": "Denis Malinochkin",
"url": "canonium.com"
},
"engines": {
"node": ">=4.0.0"
},
"bin": {
"svg2sprite": "out/cli.js"
},
"files": [
"out/cli.js"
],
"keywords": [
"svg",
"symbol",
"sprite",
"spritesheet",
"generator",
"icon",
"icons"
],
"dependencies": {
"chalk": "^1.1.3",
"meow": "^3.7.0",
"mkdirp": "^0.5.1",
"pify": "^2.3.0",
"recursive-readdir": "^2.1.0",
"svg2sprite": "^2.0.0"
},
"devDependencies": {
"mocha": "^3.0.0",
"rimraf": "^2.5.0",
"tslint": "^3.13.0",
"typescript": "^2.0.8"
},
"scripts": {
"clean": "rimraf out .tmp ",
"lint": "tslint src/**/*.ts",
"compile": "tsc",
"test": "rimraf .tmp && mocha out/**/*.spec.js",
"build": "npm run clean && npm run lint && npm run compile && npm test",
"watch": "npm run clean && npm run lint && npm run compile -- --watch"
}
}