inline-critical/package.json

80 lines
1.6 KiB
JSON
Raw Normal View History

2014-08-04 00:01:39 +02:00
{
"name": "inline-critical",
2019-11-16 00:08:53 +01:00
"version": "5.3.1",
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": {
"chalk": "^3.0.0",
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",
2018-12-20 08:05:21 +01:00
"fg-loadcss": "^2.1.0",
2019-06-13 23:31:53 +02:00
"get-stdin": "^7.0.0",
"indent-string": "^4.0.0",
"jsdom": "^15.2.1",
"lodash.defaults": "^4.2.0",
"lodash.escaperegexp": "^4.1.2",
"lodash.isregexp": "^4.0.1",
"lodash.isstring": "^4.0.1",
2018-06-13 05:44:18 +02:00
"meow": "^5.0.0",
"normalize-newline": "^3.0.0",
"postcss": "^7.0.21",
"postcss-discard": "^0.3.3",
"prettier": "^1.19.1",
"reaver": "^2.0.0",
2019-06-13 23:31:53 +02:00
"slash": "^3.0.0",
"uglify-js": "^3.6.8"
2014-08-04 00:01:39 +02:00
},
"devDependencies": {
2018-12-18 12:50:39 +01:00
"execa": "^1.0.0",
"fs-extra": "^8.1.0",
2019-08-25 14:15:13 +02:00
"jest": "^24.9.0",
"read-pkg-up": "^7.0.0",
"xo": "^0.25.3"
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
}