-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
58 lines (58 loc) · 1.27 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
{
"name": "grunt-image-size",
"version": "1.0.0",
"description": "Retrieve image size information",
"homepage": "https://github.com/saperio/grunt-image-size",
"repository": {
"type": "git",
"url": "https://github.com/saperio/grunt-image-size.git"
},
"bugs": {
"url": "https://github.com/saperio/grunt-image-size/issues"
},
"author": {
"name": "SAPer",
"email": "gsaper@gmail.com"
},
"contributors": [{
"name": "ArmorDarks",
"email": "github@lavrins.com"
}],
"keywords": [
"gruntplugin",
"image",
"image-size"
],
"engines": {
"node": ">= 6.0.0"
},
"main": "tasks/image_size.js",
"files": [
"tasks"
],
"licenses": "MIT",
"dependencies": {
"chalk": "^0.5.0",
"image-size": "^0.6.2"
},
"devDependencies": {
"eslint": "^4.13.1",
"eslint-config-prettier": "^2.9.0",
"eslint-plugin-prettier": "^2.4.0",
"grunt": "^1.0.1",
"grunt-contrib-clean": "^1.1.0",
"jest": "21.2.1",
"jit-grunt": "^0.10.0",
"prettier": "^1.9.2"
},
"scripts": {
"lint": "eslint \"./**/*.js\"",
"format": "eslint \"./**/*.js\" --fix",
"test:watch": "jest --watch",
"test": "npm run lint && jest",
"prepublishOnly": "npm test"
},
"jest": {
"testEnvironment": "node"
}
}