htmlawed/package.json

51 lines
1.2 KiB
JSON
Raw Permalink Normal View History

2016-07-05 12:45:22 +03:00
{
2016-08-27 14:54:38 +03:00
"name": "htmlawed",
2019-05-14 18:00:55 +03:00
"version": "1.0.2",
2016-07-05 12:45:22 +03:00
"author": {
"name": "Vitaliy Filippov",
"email": "vitalif@yourcmc.ru",
"url": "http://yourcmc.ru/wiki/"
},
"description": "JS port of htmLawed HTML filter library",
2016-08-27 14:54:38 +03:00
"main": "htmLawed.js",
"files": [
"htmLawed.js",
"htmLawed.src.js",
"htmLawed.min.js",
"test.js"
],
2016-07-05 12:45:22 +03:00
"repository": {
"type": "git",
"url": "https://github.com/vitalif/htmlawed"
},
2016-08-27 14:54:38 +03:00
"homepage": "https://github.com/vitalif/htmlawed",
"bugs": {
"url": "https://github.com/vitalif/htmlawed/issues"
},
2019-05-14 18:00:55 +03:00
"dependencies": {},
2016-07-05 12:45:22 +03:00
"devDependencies": {
2016-07-05 18:47:27 +03:00
"babel-cli": "latest",
"babel-plugin-transform-es2015-destructuring": "latest",
2016-10-03 14:06:20 +03:00
"babel-plugin-transform-es2015-block-scoping": "latest",
2016-07-05 18:47:27 +03:00
"babel-plugin-transform-object-rest-spread": "latest",
2016-08-27 14:54:38 +03:00
"babel-plugin-transform-es2015-arrow-functions": "latest",
2016-07-05 18:47:27 +03:00
"eslint": "latest",
"eslint-plugin-no-regex-dot": "latest"
2016-07-05 12:45:22 +03:00
},
"scripts": {
2016-08-27 14:54:38 +03:00
"build": "eslint htmLawed.src.js && babel htmLawed.src.js > htmLawed.js",
"test": "nodejs test.js"
},
"keywords": [
"html",
"sanitizer"
],
"license": "LGPL",
"maintainers": [
{
"name": "vitalif",
"email": "vitalif@yourcmc.ru"
}
]
2016-07-05 12:45:22 +03:00
}