inline-critical/package.json

80 lines
1.7 KiB
JSON
Raw Normal View History

2014-08-04 00:01:39 +02:00
{
"name": "inline-critical",
2019-06-13 23:45:43 +02:00
"version": "5.2.1",
2014-08-04 00:01:39 +02:00
"description": "Inline critical-path css and load the existing stylesheets asynchronously",
"main": "index.js",
"scripts": {
2018-12-18 12:50:39 +01:00
"test": "xo && jest --coverage",
"coveralls": "cat ./coverage/lcov.info | coveralls"
2014-08-04 00:01:39 +02:00
},
2015-06-25 06:29:18 +02:00
"files": [
"index.js",
2019-01-01 22:26:50 +01:00
"cli.js",
"src"
2015-06-25 06:29:18 +02:00
],
"bin": "cli.js",
2014-08-04 00:01:39 +02:00
"repository": {
"type": "git",
"url": "https://github.com/bezoerb/inline-critical"
},
"keywords": [
2014-11-25 23:34:15 +01:00
"css",
2015-09-29 07:04:06 +02:00
"inline",
"loadcss",
2014-11-25 23:34:15 +01:00
"critical-path"
2014-08-04 00:01:39 +02:00
],
"author": "Ben Zörb <ben@sommerlaune.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/bezoerb/inline-critical/issues"
},
"dependencies": {
2019-06-13 23:31:53 +02:00
"chalk": "^2.4.2",
2018-09-15 23:16:53 +02:00
"clean-css": "^4.2.1",
"css": "^2.2.4",
2019-06-13 23:31:53 +02:00
"detect-indent": "^6.0.0",
"dom-serializer": "^0.1.1",
2018-12-20 08:05:21 +01:00
"fg-loadcss": "^2.1.0",
2019-06-13 23:31:53 +02:00
"fs-extra": "^8.0.1",
"get-stdin": "^7.0.0",
"indent-string": "^4.0.0",
"jsdom": "^15.1.1",
2018-09-15 23:16:53 +02:00
"lodash": "^4.17.11",
2018-06-13 05:44:18 +02:00
"meow": "^5.0.0",
"normalize-newline": "3.0.0",
2019-06-13 23:31:53 +02:00
"postcss": "^7.0.17",
"postcss-discard": "^0.3.0",
2019-06-13 23:31:53 +02:00
"prettier": "^1.18.2",
"reaver": "2.0.0",
2019-06-13 23:31:53 +02:00
"resolve": "^1.11.0",
"slash": "^3.0.0",
"uglify-js": "^3.6.0"
2014-08-04 00:01:39 +02:00
},
"devDependencies": {
2019-06-13 23:31:53 +02:00
"coveralls": "^3.0.4",
"eslint-plugin-prettier": "^3.1.0",
2018-12-18 12:50:39 +01:00
"execa": "^1.0.0",
2019-06-13 23:31:53 +02:00
"jest": "^24.8.0",
"read-pkg-up": "^6.0.0",
"xo": "^0.24.0"
2015-11-13 22:59:10 +01:00
},
"xo": {
2018-12-18 12:50:39 +01:00
"space": 2,
"prettier": true
},
"jest": {
"roots": [
""
2015-11-13 22:59:10 +01:00
]
},
2018-12-18 12:50:39 +01:00
"prettier": {
"trailingComma": "es5",
"singleQuote": true,
"printWidth": 120,
"bracketSpacing": false
},
"engines": {
2018-12-18 12:50:39 +01:00
"node": ">= 8"
2014-08-04 00:01:39 +02:00
}
}