-
Notifications
You must be signed in to change notification settings - Fork 33
/
package.json
47 lines (47 loc) · 1.05 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
{
"name": "imacss",
"version": "1.0.0",
"description": "An application and library that transforms image files to data URIs and embeds these into a single CSS file.",
"author": {
"name": "André König",
"email": "[email protected]"
},
"license": "MIT",
"main": "index.js",
"scripts": {
"lint": "jshint -c ./.jshintrc ./*.js ./lib/**/*.js ./specs/*.js",
"mocha": "mocha ./specs/*.spec.js",
"test": "npm run lint && npm run mocha"
},
"bin": {
"imacss": "./bin/imacss"
},
"repository": {
"type": "git",
"url": "[email protected]:akoenig/imacss.git"
},
"engines": {
"node": ">=0.10.0"
},
"keywords": [
"css",
"images",
"data uri",
"base64"
],
"bugs": {
"url": "https://github.com/akoenig/imacss/issues"
},
"homepage": "https://github.com/akoenig/imacss",
"dependencies": {
"slug": "^0.9.1",
"through2": "^2.0.0",
"vinyl-fs": "^1.0.0"
},
"devDependencies": {
"expect.js": "^0.3.1",
"jshint": "^2.8.0",
"mocha": "^2.2.5",
"gulp-util": "^3.0.5"
}
}