1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950 |
- {
- "author": {
- "name": "Jarrett Widman",
- "url": "https://github.com/jrit"
- },
- "name": "web-resource-inliner",
- "description": "Inlines img, script and link tags into the same file.",
- "version": "6.0.1",
- "keywords": [
- "inline",
- "js",
- "css",
- "scripts",
- "stylesheets",
- "html",
- "datauri"
- ],
- "license": "MIT",
- "main": "src/inline.js",
- "files": [
- "src"
- ],
- "repository": {
- "type": "git",
- "url": "https://github.com/jrit/web-resource-inliner.git"
- },
- "engines": {
- "node": ">=10.0.0"
- },
- "devDependencies": {
- "faux-jax": "^5.0.6",
- "istanbul": "^0.4.5",
- "mime-types": "^2.1.25",
- "mocha": "^6.2.2"
- },
- "dependencies": {
- "ansi-colors": "^4.1.1",
- "escape-goat": "^3.0.0",
- "htmlparser2": "^5.0.0",
- "mime": "^2.4.6",
- "node-fetch": "^2.6.0",
- "valid-data-url": "^3.0.0"
- },
- "scripts": {
- "test": "mocha test",
- "coverage": "node ./node_modules/istanbul/lib/cli.js cover ./node_modules/mocha/bin/_mocha -- --ui bdd -R spec",
- "lint": "eslint . --fix || true",
- "format": "jscs . -x"
- }
- }
|