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.
38 lines
811 B
38 lines
811 B
1 year ago
|
{
|
||
|
"name": "is-resolvable",
|
||
|
"version": "1.1.0",
|
||
|
"description": "Check if a module ID is resolvable with require()",
|
||
|
"repository": "shinnn/is-resolvable",
|
||
|
"author": "Shinnosuke Watanabe (https://github.com/shinnn)",
|
||
|
"scripts": {
|
||
|
"pretest": "eslint --fix --format=codeframe index.js test.js",
|
||
|
"test": "node --throw-deprecation --track-heap-objects test.js",
|
||
|
"coverage": "istanbul cover --print=both test.js"
|
||
|
},
|
||
|
"license": "ISC",
|
||
|
"files": [
|
||
|
"index.js"
|
||
|
],
|
||
|
"keywords": [
|
||
|
"file",
|
||
|
"path",
|
||
|
"resolve",
|
||
|
"resolvable",
|
||
|
"check",
|
||
|
"module"
|
||
|
],
|
||
|
"devDependencies": {
|
||
|
"@shinnn/eslint-config-node": "^5.0.0",
|
||
|
"eslint": "^4.16.0",
|
||
|
"istanbul": "^0.4.5",
|
||
|
"tape": "^4.8.0"
|
||
|
},
|
||
|
"eslintConfig": {
|
||
|
"extends": "@shinnn/node",
|
||
|
"rules": {
|
||
|
"no-var": "off",
|
||
|
"prefer-template": "off"
|
||
|
}
|
||
|
}
|
||
|
}
|