-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
56 lines (56 loc) · 1.26 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": "3m",
"version": "1.1.2",
"license": "ISC",
"description": "Move & Minify Medias",
"keywords": [
"image",
"minification",
"rename",
"pattern",
"directory"
],
"author": {
"name": "Quentin Neyraud",
"email": "quentin.neyraud@gmail.com",
"url": "http://quentinneyraud.fr"
},
"homepage": "https://github.com/quentinneyraud/3m#readme",
"repository": {
"type": "git",
"url": "https://github.com/quentinneyraud/3m"
},
"bugs": {
"url": "https://github.com/quentinneyraud/3m/issues"
},
"preferGlobal": true,
"files": [
"lib",
"bin"
],
"main": "./lib/index.js",
"bin": {
"3m": "./bin/index.js"
},
"scripts": {
"dev": "babel src --out-dir lib --watch",
"build": "babel src --out-dir lib",
"prepublish": "npm run build",
"test": "echo \"Error: no test specified\" && exit 1"
},
"dependencies": {
"colors": "^1.3.0",
"commander": "^2.15.1",
"fs-extra": "^6.0.1",
"glob": "^7.1.2",
"imagemin": "^5.3.1",
"imagemin-mozjpeg": "^7.0.0",
"imagemin-pngquant": "^5.1.0",
"spawn-sync": "^2.0.0"
},
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-plugin-transform-object-rest-spread": "^6.26.0",
"babel-preset-env": "^1.7.0"
}
}