forked from lexich/webpcss
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
73 lines (73 loc) · 2.46 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": "webpcss",
"version": "1.3.5-alpha.1",
"description": "postcss processor for prepare css to use webp images",
"main": "dist/index.js",
"repository": "http://github.com/lexich/webpcss",
"scripts": {
"mocha": "istanbul test node_modules/mocha/bin/_mocha --report html -- --compilers js:babel-core/register --timeout 8000 test/*_spec.js --reporter spec",
"test": "npm run eslint && npm run mocha",
"coveralls": "istanbul cover node_modules/mocha/bin/_mocha --report html --report lcovonly -- --compilers js:babel-core/register test/*_spec.js && cat ./coverage/lcov.info | node ./node_modules/coveralls/bin/coveralls.js && rm -rf ./coverage",
"eslint": "node_modules/.bin/eslint index.js lib test",
"eslintFix": "node_modules/.bin/eslint --fix index.js lib test",
"compile": "node_modules/.bin/babel lib --out-dir dist",
"precommit": "npm run prettier && npm test && npm run compile",
"prepush": "npm test && npm run compile",
"postmerge": "npm install",
"prettier": "prettier --write \"./**/*.js\"",
"release": "npm test && standard-version && git push --follow-tags origin master --no-verify && npm publish"
},
"keywords": [
"webp",
"node",
"postcss"
],
"author": {
"name": "Efremov Alex",
"email": "[email protected]",
"url": "https://github.com/lexich"
},
"license": "MIT",
"dependencies": {
"cwebp": "2.0.4",
"file-type": "8.1.0",
"lodash": "4.17.15",
"mime-types": "2.1.19",
"parse-data-uri": "0.2.0",
"postcss": "7.0.30",
"urldata": "0.0.4",
"webp-converter": "2.1.6"
},
"devDependencies": {
"babel": "6.23.0",
"babel-cli": "6.26.0",
"babel-core": "6.26.3",
"babel-eslint": "10.0.3",
"babel-plugin-add-module-exports": "1.0.2",
"babel-preset-es2015": "6.24.1",
"babel-preset-stage-0": "6.24.1",
"chai": "3.5.0",
"coveralls": "2.11.14",
"cryptiles": ">=4.1.2",
"es6-promise": "4.0.5",
"eslint": "6.7.2",
"eslint-config-airbnb": "18.0.1",
"eslint-config-prettier": "6.7.0",
"eslint-plugin-import": "2.19.1",
"eslint-plugin-jsx-a11y": "6.2.3",
"eslint-plugin-prettier": "3.1.1",
"eslint-plugin-react": "^7.17.0",
"growl": ">=1.10.0",
"husky": "3.1.0",
"istanbul": "0.4.5",
"mocha": "3.1.2",
"mocha-lcov-reporter": "1.2.0",
"prettier": "1.19.1",
"sinon": "^7.2.2",
"standard-version": "7.0.1"
},
"resolutions": {
"extend": ">=3.0.2",
"just-extend": ">=4.0.0"
}
}