mirror of
https://git.proxmox.com/git/package-rebuilds
synced 2025-08-21 20:49:16 +00:00
50 lines
1.3 KiB
JSON
50 lines
1.3 KiB
JSON
{
|
|
"name": "llparse",
|
|
"version": "7.1.1",
|
|
"description": "Compile incremental parsers to C code",
|
|
"main": "lib/api.js",
|
|
"types": "lib/api.d.ts",
|
|
"files": [
|
|
"lib",
|
|
"src"
|
|
],
|
|
"scripts": {
|
|
"build": "tsc",
|
|
"clean": "rm -rf lib",
|
|
"prepare": "npm run clean && npm run build",
|
|
"lint": "tslint -c tslint.json src/**/*.ts test/**/*.ts",
|
|
"fix-lint": "npm run lint -- --fix",
|
|
"mocha": "mocha --timeout=10000 -r ts-node/register/type-check --reporter spec test/*-test.ts",
|
|
"test": "npm run mocha && npm run lint"
|
|
},
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "git+ssh://git@github.com/nodejs/llparse.git"
|
|
},
|
|
"keywords": [
|
|
"llparse",
|
|
"compiler"
|
|
],
|
|
"author": "Fedor Indutny <fedor@indutny.com> (http://darksi.de/)",
|
|
"license": "MIT",
|
|
"bugs": {
|
|
"url": "https://github.com/nodejs/llparse/issues"
|
|
},
|
|
"homepage": "https://github.com/nodejs/llparse#readme",
|
|
"devDependencies": {
|
|
"@types/debug": "^4.1.5",
|
|
"@types/mocha": "^8.0.3",
|
|
"@types/node": "^14.11.8",
|
|
"esm": "^3.2.25",
|
|
"llparse-test-fixture": "^5.0.1",
|
|
"mocha": "^8.1.3",
|
|
"ts-node": "^9.0.0",
|
|
"tslint": "^6.1.3",
|
|
"typescript": "^4.0.3"
|
|
},
|
|
"dependencies": {
|
|
"debug": "^4.2.0",
|
|
"llparse-frontend": "^3.0.0"
|
|
}
|
|
}
|