You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
40 lines
944 B
40 lines
944 B
4 weeks ago
|
{
|
||
|
"name": "regjsparser",
|
||
|
"version": "0.11.1",
|
||
|
"author": "'Julian Viereck' <julian.viereck@gmail.com>",
|
||
|
"license": "BSD-2-Clause",
|
||
|
"main": "./parser",
|
||
|
"types": "./parser.d.ts",
|
||
|
"bin": "bin/parser",
|
||
|
"homepage": "https://github.com/jviereck/regjsparser",
|
||
|
"repository": {
|
||
|
"type": "git",
|
||
|
"url": "git@github.com:jviereck/regjsparser.git"
|
||
|
},
|
||
|
"scripts": {
|
||
|
"lint": "eslint --max-warnings 0 .",
|
||
|
"test": "run-p test:* && npm run lint",
|
||
|
"test:src": "node test/index.js",
|
||
|
"test:types": "tsc test/types.ts --noEmit"
|
||
|
},
|
||
|
"files": [
|
||
|
"bin/",
|
||
|
"LICENSE.BSD",
|
||
|
"parser.js",
|
||
|
"parser.d.ts",
|
||
|
"README.md"
|
||
|
],
|
||
|
"dependencies": {
|
||
|
"jsesc": "~3.0.2"
|
||
|
},
|
||
|
"devDependencies": {
|
||
|
"@unicode/unicode-16.0.0": "^1.6.0",
|
||
|
"eslint": "^9.10.0",
|
||
|
"eslint-plugin-regexp": "^2.6.0",
|
||
|
"globals": "^15.9.0",
|
||
|
"npm-run-all": "^4.1.5",
|
||
|
"regenerate": "~1.0.1",
|
||
|
"typescript": "^4.5.2"
|
||
|
}
|
||
|
}
|