Son CV dans un terminal web en Javascript!
https://terminal-cv.gregandev.fr
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
50 lines
1.0 KiB
50 lines
1.0 KiB
{
|
|
"name": "data-urls",
|
|
"description": "Parses data: URLs",
|
|
"keywords": [
|
|
"data url",
|
|
"data uri",
|
|
"data:",
|
|
"http",
|
|
"fetch",
|
|
"whatwg"
|
|
],
|
|
"version": "1.1.0",
|
|
"author": "Domenic Denicola <d@domenic.me> (https://domenic.me/)",
|
|
"license": "MIT",
|
|
"repository": "jsdom/data-urls",
|
|
"main": "lib/parser.js",
|
|
"files": [
|
|
"lib/"
|
|
],
|
|
"scripts": {
|
|
"test": "jest",
|
|
"coverage": "jest --coverage",
|
|
"lint": "eslint .",
|
|
"pretest": "node scripts/get-latest-platform-tests.js"
|
|
},
|
|
"devDependencies": {
|
|
"eslint": "^5.7.0",
|
|
"jest": "^23.6.0",
|
|
"request": "^2.88.0"
|
|
},
|
|
"jest": {
|
|
"coverageDirectory": "coverage",
|
|
"coverageReporters": [
|
|
"lcov",
|
|
"text-summary"
|
|
],
|
|
"testEnvironment": "node",
|
|
"testMatch": [
|
|
"<rootDir>/test/**/*.js"
|
|
],
|
|
"coveragePathIgnorePatterns": [
|
|
"<rootDir>/node_modules/(?!(abab/lib/atob.js))"
|
|
]
|
|
},
|
|
"dependencies": {
|
|
"abab": "^2.0.0",
|
|
"whatwg-mimetype": "^2.2.0",
|
|
"whatwg-url": "^7.0.0"
|
|
}
|
|
}
|
|
|