summaryrefslogtreecommitdiffstats
path: root/llparse-frontend/package.json
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--llparse-frontend/package.json43
1 files changed, 43 insertions, 0 deletions
diff --git a/llparse-frontend/package.json b/llparse-frontend/package.json
new file mode 100644
index 0000000..8afea88
--- /dev/null
+++ b/llparse-frontend/package.json
@@ -0,0 +1,43 @@
+{
+ "name": "llparse-frontend",
+ "version": "3.0.0",
+ "description": "Frontend for LLParse compiler",
+ "main": "lib/frontend.js",
+ "types": "lib/frontend.d.ts",
+ "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/indutny/llparse-frontend.git"
+ },
+ "keywords": [
+ "llparse",
+ "frontend"
+ ],
+ "author": "Fedor Indutny <fedor@indutny.com> (http://darksi.de/)",
+ "license": "MIT",
+ "bugs": {
+ "url": "https://github.com/indutny/llparse-frontend/issues"
+ },
+ "homepage": "https://github.com/indutny/llparse-frontend#readme",
+ "dependencies": {
+ "debug": "^3.2.6",
+ "llparse-builder": "^1.5.2"
+ },
+ "devDependencies": {
+ "@types/debug": "^4.1.5",
+ "@types/mocha": "^8.0.3",
+ "@types/node": "^14.11.8",
+ "mocha": "^8.1.3",
+ "ts-node": "^9.0.0",
+ "tslint": "^5.20.1",
+ "typescript": "^4.0.3"
+ }
+}