-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
58 lines (58 loc) · 1.48 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": "hermione-image-minifier",
"version": "0.1.0",
"description": "Plugin for minification reference images",
"main": "lib/index.js",
"scripts": {
"test-unit": "mocha",
"lint": "eslint .",
"test": "npm run test-unit && npm run lint",
"preversion": "npm run test",
"release": "standard-version"
},
"engines": {
"node": ">= 8.0.0"
},
"repository": {
"type": "git",
"url": "git+https://github.com/gemini-testing/hermione-image-minifier.git"
},
"keywords": [
"hermione",
"plugin",
"hermione-image-minifier"
],
"author": "Dmitriy Dudkevich <dudkevich@yandex-team.ru>",
"license": "MIT",
"bugs": {
"url": "https://github.com/gemini-testing/hermione-image-minifier/issues"
},
"homepage": "https://github.com/gemini-testing/hermione-image-minifier#readme",
"dependencies": {
"bluebird": "^3.5.4",
"debug": "^4.1.1",
"fs-extra": "^7.0.1",
"gemini-configparser": "^1.0.0",
"lodash": "^4.17.11",
"optipng-bin": "^5.1.0"
},
"devDependencies": {
"app-module-path": "^2.2.0",
"chai": "^4.2.0",
"chai-as-promised": "^7.1.1",
"conventional-changelog-lint": "^2.1.1",
"eslint": "^5.16.0",
"eslint-config-gemini-testing": "^2.8.0",
"husky": "^1.3.1",
"mocha": "^6.1.2",
"proxyquire": "^2.1.0",
"sinon": "^7.3.1",
"standard-version": "^5.0.2"
},
"husky": {
"hooks": {
"commit-msg": "conventional-changelog-lint -e",
"pre-commit": "npm run lint"
}
}
}