UNPKG

@jplorg/jpl

Version:
66 lines (65 loc) 1.68 kB
{ "name": "@jplorg/jpl", "version": "1.4.0", "description": "JPL interpreter", "main": "./lib/index.js", "exports": { ".": { "import": "./src/index.js", "require": "./lib/index.js", "default": "./lib/index.js" }, "./package.json": "./package.json" }, "bin": { "jpl-repl": "repl.js" }, "files": [ "lib", "src", "repl.js" ], "scripts": { "prebuild": "npm run build:clean", "build:clean": "rimraf ./lib", "build": "babel src -d lib", "lint": "eslint", "prepare": "npm run lint && npm run build", "preversion": "git diff HEAD --name-only --exit-code || (echo -\\> unclean working directory && exit 1)", "postversion": "cross-env git commit -am$npm_package_version", "prettify": "prettier . --write", "start": "npm run build >/dev/null && ./repl.js", "repl": "./repl.js" }, "repository": { "type": "git", "url": "git+https://github.com/jplorg/jpl" }, "keywords": [ "jpl", "json", "cli" ], "author": "Aaron Burmeister", "license": "MIT", "bugs": { "url": "https://github.com/jplorg/jpl/issues" }, "homepage": "https://github.com/jplorg/jpl", "devDependencies": { "@babel/cli": "^7.28.0", "@babel/core": "^7.28.0", "@babel/eslint-parser": "^7.28.0", "@babel/preset-env": "^7.28.0", "@babel/preset-react": "^7.27.1", "cross-env": "^10.0.0", "eslint": "^9.20.0", "eslint-config-prettier": "^10.1.1", "eslint-plugin-import": "^2.31.0", "eslint-plugin-prettier": "^5.2.3", "eslint-plugin-unused-imports": "^4.1.4", "globals": "^16.3.0", "prettier": "^3.6.2", "rimraf": "^6.0.1" } }