UNPKG

@masala/parser

Version:
85 lines (84 loc) 2.98 kB
{ "name": "@masala/parser", "description": "Masala Parser", "license": "LGPL-2.1", "version": "1.0.0", "keywords": [ "parser", "parsec", "javascript", "ll", "combinator", "functional", "composable" ], "homepage": "https://github.com/d-plaindoux/masala-parser", "author": { "name": "Didier Plaindoux", "email": "d.plaindoux@free.fr", "url": "d.plaindoux.free.fr" }, "contributors": [ { "name": "Nicolas Zozol", "email": "nicolas@robusta.io", "url": "http://www.robusta.io" }, { "name": "Simon Zozol", "url": "http://www.robusta.io" } ], "repository": { "type": "git", "url": "https://github.com/d-plaindoux/masala-parser" }, "bugs": { "url": "https://github.com/d-plaindoux/masala-parser/issues" }, "licenses": [ { "type": "LGPL2", "url": "https://github.com/d-plaindoux/masala-parser/blob/master/LICENSE-LGPL2" } ], "main": "build/lib/index.js", "types": "./masala-parser.d.ts", "engines": { "node": ">= 6.11.4" }, "scripts": { "compile": "rimraf build/ && mkdirp build && babel src --out-dir build --source-maps && node tasks/post-compile.js ", "dev": "babel --watch src --out-dir dist", "format": "prettier-eslint --prettier.tab-width 4 --write \"src/**/*.js\"", "safeformat": "prettier-eslint --prettier.tab-width 4 \"src/**/*.js\"", "lint": "eslint \"src/**/*.js\"", "test": "npm run compile && nodeunit build/test/index.js", "cover": "rimraf ./coverage && mkdirp coverage && babel-node ./node_modules/.bin/babel-istanbul cover --dir coverage/istanbul node_modules/.bin/nodeunit src/test/index.js", "coveralls": "cat ./coverage/istanbul/lcov.info | ./node_modules/coveralls/bin/coveralls.js && rm -rf ./coverage", "check": "npm run lint && npm run test && npm run cover", "concat": "rimraf dist/ && mkdirp dist && npm run compile && browserify build/lib/index.js --standalone masala -o dist/masala-parser.js", "dist": "rimraf dist/ && mkdirp dist && npm run test && browserify -t uglifyify build/lib/index.js --standalone masalaParser -o dist/masala-parser.min.js", "integrate": "npm run check && npm run dist && node tasks/integrate.js && echo 'prepuplished OK'", "copy-ts": "npm run compile && node tasks/copy-to-ts", "integration": "npm run copy-ts && cd integration-ts && npm run test", "doc": "typedoc --includeDeclarations --excludeExternals --out documentation/typedoc masala-parser.d.ts" }, "devDependencies": { "babel-cli": "^6.26.0", "babel-core": "^6.10.4", "babel-eslint": "^6.1.2", "babel-istanbul": "^0.12.2", "babel-preset-es2015": "^6.9.0", "coveralls": "^3.0.6", "eslint": "^4.18.2", "mkdirp": "^0.5.1", "ncp": "^2.0.0", "nodeunit": "^0.11.3", "prettier": "^1.3.1", "prettier-eslint-cli": "^3.4.3", "rimraf": "^2.6.1", "rmfr": "^2.0.0", "typedoc": "^0.15.0" } }