-
Notifications
You must be signed in to change notification settings - Fork 16
/
package.json
executable file
·107 lines (107 loc) · 3.06 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
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
{
"name": "lepto",
"version": "1.2.0",
"description": "Advanced image Editing, Optimization and Analysis CLI and GUI tool",
"main": "src/lepto.js",
"author": "Dimitri NICOLAS <[email protected]>",
"license": "MIT",
"homepage": "https://github.com/dimitrinicolas/lepto",
"repository": {
"type": "git",
"url": "git+https://github.com/dimitrinicolas/lepto.git"
},
"bugs": {
"url": "https://github.com/dimitrinicolas/lepto/issues"
},
"keywords": [
"front-end",
"images",
"optimization",
"javascript",
"gui",
"jpg",
"webp",
"png",
"gif",
"svg"
],
"watch": {
"lint": {
"patterns": ["src", "test"],
"extensions": "js"
},
"style:build": {
"patterns": ["src/gui/src"],
"extensions": "css"
},
"script:build": {
"patterns": ["src/gui/src"],
"extensions": "js"
}
},
"scripts": {
"publish": "clean-publish --files fixtures --files src/gui/src",
"style:build": "postcss --config src/gui/build/postcss.config.js -o src/gui/dist/style.css src/gui/src/main.css",
"script:build": "webpack src/gui/src/main.js --output-path='./src/gui/dist/' --output-filename='script.js' --config src/gui/build/webpack.config.js",
"browser-sync": "browser-sync start --config src/gui/build/bs.config.js",
"browser-sync-silent": "browser-sync start --config src/gui/build/bs.config.js --no-open",
"lint": "eslint **/**/*.js --quiet",
"build": "npm run style:build && npm run script:build",
"start": "npm-watch",
"test": "ava"
},
"dependencies": {
"chokidar": "^2.0.4",
"deep-object-diff": "^1.1.0",
"directory-tree": "^2.1.0",
"exec-buffer": "^3.2.0",
"fast-glob": "^2.2.2",
"file-type": "^9.0.0",
"fs-extra": "^7.0.0",
"gifsicle": "^3.0.4",
"image-size": "^0.6.3",
"minimatch": "^3.0.4",
"opn": "^5.3.0",
"pngquant": "^1.3.0",
"sharp": "^0.20.7",
"socket.io": "^2.1.1",
"svgo": "^1.0.5"
},
"devDependencies": {
"autoprefixer": "^9.1.2",
"ava": "^0.25.0",
"babel-core": "^6.26.3",
"babel-eslint": "^8.2.6",
"babel-loader": "^7.1.5",
"babel-preset-env": "^1.7.0",
"clean-publish": "^1.0.9",
"css-mqpacker": "^7.0.0",
"eslint": "^5.4.0",
"eslint-config-airbnb": "^17.1.0",
"eslint-plugin-import": "^2.14.0",
"eslint-plugin-jsx-a11y": "^6.1.1",
"eslint-plugin-react": "^7.11.1",
"focus-visible": "^4.1.5",
"glob": "^7.0.5",
"lepto-resize": "^1.0.1",
"lepto-vibrant-color": "^1.0.0",
"lepto-webp": "^1.0.1",
"magnifier": "^0.4.0",
"npm-watch": "^0.3.0",
"postcss": "^7.0.2",
"postcss-axis": "^0.1.2",
"postcss-calc": "^6.0.0",
"postcss-cli": "^6.0.0",
"postcss-color-function": "^4.0.1",
"postcss-import": "^12.0.0",
"postcss-inline-media": "^1.3.0",
"postcss-nested": "^3.0.0",
"postcss-position": "^1.0.0",
"postcss-pxtorem": "^4.0.0",
"postcss-simple-vars": "^4.1.0",
"postcss-size": "^2.0.0",
"sort-css-media-queries": "^1.3.4",
"webpack": "^4.17.0",
"webpack-cli": "^3.1.0"
}
}