2014-08-04 00:01:39 +02:00
|
|
|
{
|
|
|
|
"name": "inline-critical",
|
2018-11-29 17:41:44 +01:00
|
|
|
"version": "4.0.7",
|
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",
|
2015-11-13 22:59:10 +01:00
|
|
|
"cli.js"
|
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": {
|
2015-03-30 16:54:00 +02:00
|
|
|
"cave": "2.0.0",
|
2016-09-29 23:05:20 +02:00
|
|
|
"cheerio": "0.22.0",
|
2018-09-15 23:16:53 +02:00
|
|
|
"clean-css": "^4.2.1",
|
|
|
|
"css": "^2.2.4",
|
2016-10-24 00:02:52 +02:00
|
|
|
"detect-indent": "5.0.0",
|
2015-03-30 16:54:00 +02:00
|
|
|
"dom-serializer": "0.1.0",
|
2017-12-01 07:11:29 +01:00
|
|
|
"fg-loadcss": "^2.0.1",
|
2018-12-18 12:50:39 +01:00
|
|
|
"fs-extra": "^7.0.1",
|
2018-03-05 20:56:57 +01:00
|
|
|
"get-stdin": "^6.0.0",
|
2017-12-14 23:35:03 +01:00
|
|
|
"indent-string": "^3.2.0",
|
2018-09-15 23:16:53 +02:00
|
|
|
"lodash": "^4.17.11",
|
2018-06-13 05:44:18 +02:00
|
|
|
"meow": "^5.0.0",
|
2016-09-06 16:46:07 +02:00
|
|
|
"normalize-newline": "3.0.0",
|
2015-10-20 19:35:14 +02:00
|
|
|
"reaver": "2.0.0",
|
2018-09-15 23:16:53 +02:00
|
|
|
"resolve": "^1.8.1",
|
2018-06-13 05:44:18 +02:00
|
|
|
"slash": "^2.0.0",
|
2018-09-15 23:16:53 +02:00
|
|
|
"uglify-js": "^3.4.9"
|
2014-08-04 00:01:39 +02:00
|
|
|
},
|
|
|
|
"devDependencies": {
|
2017-07-03 23:17:18 +02:00
|
|
|
"chai": "^4.0.2",
|
2018-06-13 05:44:18 +02:00
|
|
|
"concat-stream": "^1.6.2",
|
2018-09-15 23:16:53 +02:00
|
|
|
"coveralls": "^3.0.2",
|
2018-12-18 12:50:39 +01:00
|
|
|
"execa": "^1.0.0",
|
|
|
|
"jest": "^23.6.0",
|
2018-06-13 05:44:18 +02:00
|
|
|
"mocha": "^5.2.0",
|
2017-07-03 23:17:18 +02:00
|
|
|
"mockery": "^2.1.0",
|
2018-09-15 23:16:53 +02:00
|
|
|
"nyc": "^13.0.1",
|
2017-07-03 23:17:18 +02:00
|
|
|
"read-package-json": "^2.0.10",
|
2018-12-18 12:50:39 +01:00
|
|
|
"read-pkg-up": "^4.0.0",
|
2018-09-15 23:16:53 +02:00
|
|
|
"xo": "^0.23.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
|
|
|
]
|
2016-09-02 23:59:09 +02:00
|
|
|
},
|
2018-12-18 12:50:39 +01:00
|
|
|
"prettier": {
|
|
|
|
"trailingComma": "es5",
|
|
|
|
"singleQuote": true,
|
|
|
|
"printWidth": 120,
|
|
|
|
"bracketSpacing": false
|
|
|
|
},
|
2016-09-02 23:59:09 +02:00
|
|
|
"engines": {
|
2018-12-18 12:50:39 +01:00
|
|
|
"node": ">= 8"
|
2014-08-04 00:01:39 +02:00
|
|
|
}
|
|
|
|
}
|