CoolFace
Datasetpublic

basant307/AI_Governance_Project

sourceHugging Faceapache-2.0updated 2mo agoView on Hugging Face
0likes48downloads
package.json41 linesDownload Raw Back to eslint-plugin-notice
1{2  "name": "eslint-plugin-notice",3  "version": "1.0.0",4  "description": "An eslint rule that checks the top of files and --fix them too!",5  "main": "index.js",6  "directories": {7    "test": "tests"8  },9  "scripts": {10    "test": "node tests/lib/rules/notice.js && node tests/test-utils.js && mocha staging"11  },12  "keywords": [13    "eslint",14    "plugin",15    "notice",16    "copyright",17    "header",18    "lint",19    "eslintplugin"20  ],21  "repository": "https://github.com/nickdeis/eslint-plugin-notice",22  "author": "nickdeis",23  "license": "MIT",24  "devDependencies": {25    "eslint": "^8.57.0",26    "eslint-plugin-self": "^1.2.0",27    "eslint6": "npm:eslint@^6.8.0",28    "eslint7": "npm:eslint@^7.32.0",29    "eslint9": "npm:eslint@^9.3.0",30    "mocha": "^10.4.0"31  },32  "dependencies": {33    "find-root": "^1.1.0",34    "lodash": "^4.17.21",35    "metric-lcs": "^0.1.2"36  },37  "peerDependencies": {38    "eslint": ">=3.0.0"39  }40}41 
basant307/AI_Governance_Project · CoolFace