UNPKG

1.32 kBJSONView Raw
1{
2 "name": "llparse",
3 "version": "6.3.0",
4 "description": "Compile parsers to LLVM bitcode",
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/indutny/llparse.git"
23 },
24 "keywords": [
25 "llparse",
26 "compiler",
27 "bitcode"
28 ],
29 "author": "Fedor Indutny <fedor@indutny.com> (http://darksi.de/)",
30 "license": "MIT",
31 "bugs": {
32 "url": "https://github.com/indutny/llparse/issues"
33 },
34 "homepage": "https://github.com/indutny/llparse#readme",
35 "devDependencies": {
36 "@types/debug": "0.0.30",
37 "@types/mocha": "^5.2.7",
38 "@types/node": "^10.17.26",
39 "esm": "^3.2.25",
40 "llparse-test-fixture": "^3.3.3",
41 "mocha": "^7.1.1",
42 "ts-node": "^8.8.1",
43 "tslint": "^6.1.0",
44 "typescript": "^3.9.5"
45 },
46 "dependencies": {
47 "bitcode": "^1.2.0",
48 "debug": "^3.2.6",
49 "llparse-frontend": "^1.3.0"
50 }
51}