-
Notifications
You must be signed in to change notification settings - Fork 16
/
Copy pathpackage.json
executable file
·56 lines (56 loc) · 1.38 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
{
"name": "gulp-tmtsprite",
"version": "0.0.23",
"description": "CSS Sprite Generator",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/weixin/gulp-tmtsprite.git"
},
"homepage": "https://github.com/weixin/gulp-tmtsprite",
"bugs": {
"url": "https://github.com/weixin/gulp-tmtsprite/issues"
},
"author": {
"name": "Willerce Zenn",
"email": "[email protected]",
"url": "http://willerce.com"
},
"engines": {
"node": ">=0.10.0"
},
"scripts": {
"test": "mocha --reporter spec",
"coveralls": "istanbul cover _mocha --report lcovonly -- -R spec && cat ./coverage/lcov.info | coveralls && rm -rf ./coverage",
"coverage": "istanbul cover _mocha --report html -- -R spec",
"hint": "jshint lib/**/*.js index.js",
"style": "jscs test/*.js lib/**/*.js index.js"
},
"main": "./index.js",
"keywords": [
"sprites",
"sprite",
"coordinates",
"css",
"gulpfriendly",
"gruntplugin"
],
"dependencies": {
"async": "^2.6.1",
"color": "^3.0.0",
"jimp": "^0.2.28",
"layout": "^2.2.0",
"lodash": "^4.17.10",
"through2": "^2.0.3",
"vinyl": "^2.2.0"
},
"devDependencies": {
"coveralls": "^2.11.2",
"istanbul": "^0.3.7",
"mocha": "^2.1.0",
"mocha-lcov-reporter": "^0.0.2",
"should": "^5.2.0",
"vinyl-fs": "^3.0.3"
},
"readmeFilename": "README.md"
}