1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162 |
- {
- "name": "valid-data-url",
- "version": "3.0.1",
- "description": "Detect if a string is a data URL",
- "main": "index.js",
- "files": [
- "index.js"
- ],
- "engines": {
- "node": ">=10"
- },
- "license": "MIT",
- "author": {
- "name": "Alexey Kucherenko",
- "url": "https://github.com/killmenot"
- },
- "homepage": "https://github.com/killmenot/valid-data-url",
- "repository": {
- "type": "git",
- "url": "git@github.com:killmenot/valid-data-url.git"
- },
- "bugs": {
- "url": "https://github.com/killmenot/valid-data-url/issues"
- },
- "keywords": [
- "valid",
- "data-uri",
- "data-url",
- "data",
- "uri",
- "url",
- "datauri",
- "dataurl"
- ],
- "scripts": {
- "lint": "jshint index.js test.js",
- "test": "mocha",
- "coverage": "nyc --reporter=html --reporter=text mocha",
- "coveralls": "nyc report --reporter=text-lcov | coveralls"
- },
- "pre-commit": [
- "lint",
- "test"
- ],
- "nyc": {
- "all": true,
- "include": [
- "index.js"
- ],
- "exclude": [
- "test.js"
- ]
- },
- "devDependencies": {
- "chai": "^4.2.0",
- "coveralls": "^3.1.0",
- "jshint": "^2.12.0",
- "mocha": "^8.1.3",
- "nyc": "^15.1.0",
- "pre-commit": "^1.2.2"
- }
- }
|