-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
54 lines (54 loc) · 1.09 KB
/
package.json
File metadata and controls
54 lines (54 loc) · 1.09 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
49
50
51
52
53
54
{
"name": "sprity-cli",
"version": "1.0.1",
"description": "Command line interface for sprity",
"repository": {
"type": "git",
"url": "https://github.com/sprity/sprity-cli.git"
},
"homepage": "https://github.com/sprity/sprity-cli",
"bugs": {
"url": "https://github.com/sprity/sprity-cli/issues"
},
"licenses": [
{
"type": "MIT",
"url": "https://github.com/sprity/sprity-cli/blob/master/LICENSE-MIT"
}
],
"author": {
"name": "Alexander Slansky",
"email": "alexander@slansky.net",
"url": "http://slansky.net"
},
"engines": {
"node": ">=0.10.0"
},
"bin": {
"sprity": "./index.js"
},
"scripts": {
"hint": "eslint index.js",
"style": "jscs index.js"
},
"main": "./index.js",
"keywords": [
"sprites",
"sprite",
"css-sprite",
"sprity"
],
"dependencies": {
"bluebird": "^2.9.24",
"colors": "^1.0.3",
"lodash": "^3.7.0",
"nomnom": "^1.8.1",
"npm": "^2.8.4",
"sprity": "^1.0.0",
"vinyl-fs": "^1.0.0"
},
"devDependencies": {
"chai": "^2.2.0",
"mocha": "^2.2.4"
}
}