-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
73 lines (73 loc) · 1.45 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
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
{
"name": "ysprite",
"version": "3.0.0",
"description": "A lightweight yet powerful css sprite util.",
"main": "lib/index.js",
"bin": {
"ysprite": "bin/cli.js"
},
"scripts": {
"test-only": "ava",
"test-ci": "nyc npm run test-only",
"test": "npm run lint && npm run test-only",
"lint": "eslint lib bin test",
"coverage": "nyc report --reporter=text-lcov | coveralls"
},
"files": [
"lib",
"bin"
],
"repository": {
"type": "git",
"url": "git+https://github.com/creeperyang/ysprite.git"
},
"keywords": [
"sprite",
"css",
"image",
"cli",
"retina"
],
"author": {
"name": "creeperyang",
"email": "pashanhu6@hotmail.com"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/creeperyang/ysprite/issues"
},
"homepage": "https://github.com/creeperyang/ysprite#readme",
"engines": {
"node": ">=6"
},
"dependencies": {
"colors": "^1.1.2",
"commander": "^2.9.0",
"glob-all": "^3.1.0",
"lwip": "0.0.9",
"minimatch": "^3.0.3",
"mkdirp": "^0.5.1"
},
"devDependencies": {
"ava": "^0.17.0",
"eslint": "^3.10.2",
"eslint-config-standard": "^6.2.1",
"eslint-plugin-promise": "^3.4.0",
"eslint-plugin-standard": "^2.0.1",
"nyc": "^9.0.1",
"tempfile": "^1.1.1"
},
"nyc": {
"include": [
"lib/*.js"
]
},
"ava": {
"files": [
"test/*.spec.js"
],
"source": [
"lib/*.js"
]
}
}