inline-critical/package.json
2020-05-24 01:07:29 +02:00

80 lines
1.6 KiB
JSON

{
"name": "inline-critical",
"version": "6.0.0",
"description": "Inline critical-path css and load the existing stylesheets asynchronously",
"main": "index.js",
"scripts": {
"jest": "jest --coverage",
"xo": "xo",
"test": "npm run xo && npm run jest"
},
"files": [
"index.js",
"cli.js",
"src/*.js"
],
"bin": "cli.js",
"repository": {
"type": "git",
"url": "https://github.com/bezoerb/inline-critical"
},
"keywords": [
"css",
"inline",
"loadcss",
"critical-path"
],
"author": "Ben Zörb <ben@sommerlaune.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/bezoerb/inline-critical/issues"
},
"dependencies": {
"chalk": "^4.0.0",
"clean-css": "^4.2.3",
"css": "^2.2.4",
"detect-indent": "^6.0.0",
"fg-loadcss": "^2.1.0",
"get-stdin": "^8.0.0",
"indent-string": "^4.0.0",
"jsdom": "^16.2.2",
"lodash.defaults": "^4.2.0",
"lodash.escaperegexp": "^4.1.2",
"lodash.isregexp": "^4.0.1",
"lodash.isstring": "^4.0.1",
"meow": "^7.0.1",
"normalize-newline": "^3.0.0",
"postcss": "^7.0.30",
"postcss-discard": "^0.3.7",
"prettier": "^2.0.5",
"reaver": "^2.0.0",
"slash": "^3.0.0",
"uglify-js": "^3.9.3"
},
"devDependencies": {
"execa": "^4.0.2",
"fs-extra": "^9.0.0",
"jest": "^26.0.1",
"read-pkg-up": "^7.0.1",
"xo": "^0.30.0"
},
"xo": {
"space": 2,
"prettier": true
},
"jest": {
"roots": [
""
]
},
"prettier": {
"trailingComma": "es5",
"singleQuote": true,
"printWidth": 120,
"bracketSpacing": false
},
"engines": {
"node": ">=10"
}
}