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.
37 lines
879 B
37 lines
879 B
{ |
|
"name": "regjsparser", |
|
"version": "0.8.4", |
|
"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 --ext .js --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": "~0.5.0" |
|
}, |
|
"devDependencies": { |
|
"eslint": "^8.8.0", |
|
"npm-run-all": "^4.1.5", |
|
"regenerate": "~1.0.1", |
|
"typescript": "^4.5.2", |
|
"unicode-11.0.0": "^0.7.8" |
|
} |
|
}
|
|
|