inline-critical/package.json

80 lines
1.6 KiB
JSON
Raw Permalink Normal View History

2014-08-04 00:01:39 +02:00
{
"name": "inline-critical",
2020-05-24 01:07:29 +02:00
"version": "6.0.0",
2014-08-04 00:01:39 +02:00
"description": "Inline critical-path css and load the existing stylesheets asynchronously",
"main": "index.js",
"scripts": {
"jest": "jest --coverage",
"xo": "xo",
2019-10-07 16:20:57 +02:00
"test": "npm run xo && npm run jest"
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/*.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": {
2020-05-23 00:36:56 +02:00
"chalk": "^4.0.0",
2020-05-20 07:31:16 +02:00
"clean-css": "^4.2.3",
2018-09-15 23:16:53 +02:00
"css": "^2.2.4",
2019-06-13 23:31:53 +02:00
"detect-indent": "^6.0.0",
2018-12-20 08:05:21 +01:00
"fg-loadcss": "^2.1.0",
2020-05-23 00:36:56 +02:00
"get-stdin": "^8.0.0",
2019-06-13 23:31:53 +02:00
"indent-string": "^4.0.0",
2020-05-23 00:36:56 +02:00
"jsdom": "^16.2.2",
"lodash.defaults": "^4.2.0",
"lodash.escaperegexp": "^4.1.2",
"lodash.isregexp": "^4.0.1",
"lodash.isstring": "^4.0.1",
2020-05-23 00:36:56 +02:00
"meow": "^7.0.1",
"normalize-newline": "^3.0.0",
2020-05-20 07:31:16 +02:00
"postcss": "^7.0.30",
2020-05-23 00:36:56 +02:00
"postcss-discard": "^0.3.7",
"prettier": "^2.0.5",
"reaver": "^2.0.0",
2019-06-13 23:31:53 +02:00
"slash": "^3.0.0",
2020-05-22 23:57:07 +02:00
"uglify-js": "^3.9.3"
2014-08-04 00:01:39 +02:00
},
"devDependencies": {
2020-05-23 00:36:56 +02:00
"execa": "^4.0.2",
"fs-extra": "^9.0.0",
2020-05-20 00:44:41 +02:00
"jest": "^26.0.1",
2020-05-20 07:31:16 +02:00
"read-pkg-up": "^7.0.1",
2020-05-23 00:36:56 +02:00
"xo": "^0.30.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": {
2020-05-20 07:07:57 +02:00
"node": ">=10"
}
2014-08-04 00:01:39 +02:00
}