-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
48 lines (48 loc) · 1.12 KB
/
Copy pathpackage.json
File metadata and controls
48 lines (48 loc) · 1.12 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
{
"name": "gulp-cssmyicons",
"version": "1.0.5",
"description": "Gulp plugin to generate a CSS for SVG icons",
"main": "index.js",
"scripts": {
"hint": "jshint --reporter=node_modules/jshint-stylish/index.js index.js",
"dev": "npm run watch",
"test": "mocha tests/tests.js",
"watch": "watchify **/*.js -o 'npm run hint && npm run test'"
},
"engines": {
"node": ">=0.10.x"
},
"repository": {
"type": "git",
"url": "git+https://github.com/raiseandfall/gulp-cssmyicons.git"
},
"keywords": [
"gulpplugin",
"css",
"icons",
"svg",
"svg-to-css",
"gulp"
],
"author": {
"name": "raiseandfall",
"url": "https://github.com/raiseandfall"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/raiseandfall/gulp-cssmyicons/issues"
},
"homepage": "https://github.com/raiseandfall/gulp-cssmyicons",
"devDependencies": {
"event-stream": "^3.3.1",
"gulp": "^3.9.0",
"jshint": "^2.8.0",
"jshint-stylish": "^2.0.1",
"mocha": "^2.2.5",
"watchify": "^3.2.3"
},
"dependencies": {
"gulp-util": "^3.0.6",
"through2": "^2.0.0"
}
}