mirror of
https://github.com/github/codeql-action.git
synced 2025-12-26 09:10:07 +08:00
51 lines
1.3 KiB
JSON
51 lines
1.3 KiB
JSON
{
|
|
"name": "removeNPMAbsolutePaths",
|
|
"version": "3.0.0",
|
|
"description": "Remove the fields containing local aboslute paths created by NPM",
|
|
"keywords": [
|
|
"npm",
|
|
"modules"
|
|
],
|
|
"main": "src/removeNPMAbsolutePaths.js",
|
|
"scripts": {
|
|
"lint": "eslint bin/removeNPMAbsolutePaths src test --ignore-pattern 'test/data/malformed/module/'",
|
|
"test": "mocha test",
|
|
"test-with-coverage": "nyc --reporter=text --reporter=lcov mocha test"
|
|
},
|
|
"author": "Juanjo Diaz <juanjo.diazmo@gmail.com>",
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "git://github.com/juanjoDiaz/removeNPMAbsolutePaths"
|
|
},
|
|
"bugs": {
|
|
"url": "https://github.com/removeNPMAbsolutePaths/issues",
|
|
"email": "juanjo.diazmo@gmail.com"
|
|
},
|
|
"license": "MIT",
|
|
"preferGlobal": true,
|
|
"bin": {
|
|
"removeNPMAbsolutePaths": "bin/removeNPMAbsolutePaths"
|
|
},
|
|
"files": [
|
|
"LICENSE",
|
|
"README.md",
|
|
"bin/",
|
|
"src/"
|
|
],
|
|
"devDependencies": {
|
|
"chai": "^4.3.6",
|
|
"chai-as-promised": "^7.1.1",
|
|
"coveralls": "^3.1.1",
|
|
"eslint": "^8.9.0",
|
|
"eslint-config-airbnb-base": "^15.0.0",
|
|
"eslint-plugin-import": "^2.25.4",
|
|
"mocha": "^9.2.1",
|
|
"nyc": "^15.1.0",
|
|
"sinon": "^13.0.1",
|
|
"sinon-chai": "^3.7.0"
|
|
},
|
|
"engines": {
|
|
"node": ">=4.0.0"
|
|
}
|
|
}
|