hexo/node_modules/character-parser/package.json

33 lines
855 B
JSON
Raw Normal View History

2023-10-03 11:14:36 +08:00
{
"name": "character-parser",
"version": "2.2.0",
"description": "Parse JavaScript one character at a time to look for snippets in Templates. This is not a validator, it's just designed to allow you to have sections of JavaScript delimited by brackets robustly.",
"main": "index.js",
"scripts": {
"coverage": "istanbul cover test/index.js",
"test": "node test/index.js"
},
"repository": {
"type": "git",
"url": "https://github.com/ForbesLindesay/character-parser.git"
},
"keywords": [
"parser",
"JavaScript",
"bracket",
"nesting",
"comment",
"string",
"escape",
"escaping"
],
"author": "ForbesLindesay",
"license": "MIT",
"devDependencies": {
"istanbul": "~0.3.22",
"testit": "~2.0.2"
},
"dependencies": {
"is-regex": "^1.0.3"
}
2023-09-25 15:58:56 +08:00
}