|
Last change
on this file was 9af201e, checked in by MBK <marija.karapandzova@…>, 11 days ago |
|
Fix frontend appearance
|
-
Property mode
set to
100644
|
|
File size:
1.1 KB
|
| Line | |
|---|
| 1 | {
|
|---|
| 2 | "name": "data-urls",
|
|---|
| 3 | "description": "Parses data: URLs",
|
|---|
| 4 | "keywords": [
|
|---|
| 5 | "data url",
|
|---|
| 6 | "data uri",
|
|---|
| 7 | "data:",
|
|---|
| 8 | "http",
|
|---|
| 9 | "fetch",
|
|---|
| 10 | "whatwg"
|
|---|
| 11 | ],
|
|---|
| 12 | "version": "2.0.0",
|
|---|
| 13 | "author": "Domenic Denicola <d@domenic.me> (https://domenic.me/)",
|
|---|
| 14 | "license": "MIT",
|
|---|
| 15 | "repository": "jsdom/data-urls",
|
|---|
| 16 | "main": "lib/parser.js",
|
|---|
| 17 | "files": [
|
|---|
| 18 | "lib/"
|
|---|
| 19 | ],
|
|---|
| 20 | "scripts": {
|
|---|
| 21 | "test": "jest",
|
|---|
| 22 | "coverage": "jest --coverage",
|
|---|
| 23 | "lint": "eslint .",
|
|---|
| 24 | "pretest": "node scripts/get-latest-platform-tests.js"
|
|---|
| 25 | },
|
|---|
| 26 | "dependencies": {
|
|---|
| 27 | "abab": "^2.0.3",
|
|---|
| 28 | "whatwg-mimetype": "^2.3.0",
|
|---|
| 29 | "whatwg-url": "^8.0.0"
|
|---|
| 30 | },
|
|---|
| 31 | "devDependencies": {
|
|---|
| 32 | "eslint": "^6.8.0",
|
|---|
| 33 | "jest": "^24.9.0",
|
|---|
| 34 | "request": "^2.88.0"
|
|---|
| 35 | },
|
|---|
| 36 | "engines": {
|
|---|
| 37 | "node": ">=10"
|
|---|
| 38 | },
|
|---|
| 39 | "jest": {
|
|---|
| 40 | "coverageDirectory": "coverage",
|
|---|
| 41 | "coverageReporters": [
|
|---|
| 42 | "lcov",
|
|---|
| 43 | "text-summary"
|
|---|
| 44 | ],
|
|---|
| 45 | "testEnvironment": "node",
|
|---|
| 46 | "testMatch": [
|
|---|
| 47 | "<rootDir>/test/**/*.js"
|
|---|
| 48 | ],
|
|---|
| 49 | "coveragePathIgnorePatterns": [
|
|---|
| 50 | "<rootDir>/node_modules/(?!(abab/lib/atob.js))"
|
|---|
| 51 | ]
|
|---|
| 52 | }
|
|---|
| 53 | }
|
|---|
Note:
See
TracBrowser
for help on using the repository browser.