2015-05-13 12:13:15 +03:00
|
|
|
{
|
2017-04-05 16:07:28 +03:00
|
|
|
"name": "eslint-plugin-no-unsanitized",
|
2017-05-09 09:58:05 +03:00
|
|
|
"description": "ESLint rule to disallow unsanitized code",
|
2021-10-20 09:59:31 +03:00
|
|
|
"version": "3.2.0",
|
2015-05-13 12:13:15 +03:00
|
|
|
"author": {
|
2017-04-05 16:07:28 +03:00
|
|
|
"name": "Frederik Braun et al."
|
2015-05-13 12:13:15 +03:00
|
|
|
},
|
|
|
|
"bugs": {
|
2017-04-05 16:07:28 +03:00
|
|
|
"url": "https://github.com/mozilla/eslint-plugin-no-unsanitized/issues"
|
2015-05-13 12:13:15 +03:00
|
|
|
},
|
|
|
|
"devDependencies": {
|
2020-09-30 16:23:56 +03:00
|
|
|
"@babel/plugin-proposal-logical-assignment-operators": "^7.11.0",
|
|
|
|
"@babel/plugin-proposal-nullish-coalescing-operator": "^7.10.4",
|
2020-08-05 15:43:47 +03:00
|
|
|
"@typescript-eslint/parser": "^3.7.1",
|
2020-09-30 16:08:47 +03:00
|
|
|
"babel-eslint": "^10.1.0",
|
2020-06-03 16:17:24 +03:00
|
|
|
"eslint": "^7.1.0",
|
2021-10-18 12:42:26 +03:00
|
|
|
"mocha": "^9.1.3",
|
2020-08-05 15:43:47 +03:00
|
|
|
"nyc": "^15.1.0",
|
|
|
|
"typescript": "^3.9.7"
|
2015-05-13 12:14:50 +03:00
|
|
|
},
|
2018-02-05 17:53:09 +03:00
|
|
|
"peerDependencies": {
|
2020-05-13 10:26:27 +03:00
|
|
|
"eslint": "^5 || ^6 || ^7"
|
2018-02-05 17:53:09 +03:00
|
|
|
},
|
2017-04-05 16:07:28 +03:00
|
|
|
"homepage": "https://github.com/mozilla/eslint-plugin-no-unsanitized/",
|
2015-05-13 12:13:15 +03:00
|
|
|
"keywords": [
|
|
|
|
"eslint",
|
|
|
|
"eslint-plugin",
|
|
|
|
"eslintplugin",
|
2015-05-13 12:14:50 +03:00
|
|
|
"lint",
|
2017-05-09 09:58:05 +03:00
|
|
|
"sanitize",
|
|
|
|
"innerHTML",
|
2015-05-13 12:13:15 +03:00
|
|
|
"security"
|
|
|
|
],
|
2015-09-08 13:26:05 +03:00
|
|
|
"license": "MPL-2.0",
|
2015-05-13 12:13:15 +03:00
|
|
|
"main": "index.js",
|
|
|
|
"repository": {
|
|
|
|
"type": "git",
|
2017-04-05 16:07:28 +03:00
|
|
|
"url": "https://github.com/mozilla/eslint-plugin-no-unsanitized/issues"
|
2015-05-13 12:13:15 +03:00
|
|
|
},
|
2018-05-08 13:27:41 +03:00
|
|
|
"scripts": {
|
2020-06-03 16:17:24 +03:00
|
|
|
"test": "nyc mocha tests/rules/",
|
|
|
|
"lint": "eslint ."
|
2020-10-01 14:49:10 +03:00
|
|
|
},
|
2021-04-12 14:56:22 +03:00
|
|
|
"files": [
|
|
|
|
"LICENSE",
|
|
|
|
"README.md",
|
|
|
|
"SCHEMA.md",
|
|
|
|
"SECURITY.md",
|
|
|
|
"docs",
|
|
|
|
"index.js",
|
|
|
|
"lib"
|
|
|
|
]
|
2015-05-13 12:13:15 +03:00
|
|
|
}
|