UNPKG

1.28 kBJSONView Raw
1{
2 "name": "llparse",
3 "version": "7.1.1",
4 "description": "Compile incremental parsers to C code",
5 "main": "lib/api.js",
6 "types": "lib/api.d.ts",
7 "files": [
8 "lib",
9 "src"
10 ],
11 "scripts": {
12 "build": "tsc",
13 "clean": "rm -rf lib",
14 "prepare": "npm run clean && npm run build",
15 "lint": "tslint -c tslint.json src/**/*.ts test/**/*.ts",
16 "fix-lint": "npm run lint -- --fix",
17 "mocha": "mocha --timeout=10000 -r ts-node/register/type-check --reporter spec test/*-test.ts",
18 "test": "npm run mocha && npm run lint"
19 },
20 "repository": {
21 "type": "git",
22 "url": "git+ssh://git@github.com/nodejs/llparse.git"
23 },
24 "keywords": [
25 "llparse",
26 "compiler"
27 ],
28 "author": "Fedor Indutny <fedor@indutny.com> (http://darksi.de/)",
29 "license": "MIT",
30 "bugs": {
31 "url": "https://github.com/nodejs/llparse/issues"
32 },
33 "homepage": "https://github.com/nodejs/llparse#readme",
34 "devDependencies": {
35 "@types/debug": "^4.1.5",
36 "@types/mocha": "^8.0.3",
37 "@types/node": "^14.11.8",
38 "esm": "^3.2.25",
39 "llparse-test-fixture": "^5.0.1",
40 "mocha": "^8.1.3",
41 "ts-node": "^9.0.0",
42 "tslint": "^6.1.3",
43 "typescript": "^4.0.3"
44 },
45 "dependencies": {
46 "debug": "^4.2.0",
47 "llparse-frontend": "^3.0.0"
48 }
49}