UNPKG

slv-utils

Version:

Utilities for working with SLV and DAT files.

49 lines (48 loc) 1.6 kB
{ "name": "slv-utils", "version": "0.5.1", "description": "Utilities for working with SLV and DAT files.", "main": "src/index.js", "bin": { "slv": "./bin/slv.js", "slv-parse": "./bin/slv-parse.js", "slv-clear": "./bin/slv-clear.js", "slv-dat-parse": "./bin/slv-dat-parse.js", "slv-rct-parse": "./bin/slv-rct-parse.js", "slv-rct-serialize": "./bin/slv-rct-serialize.js", "slv-dat-serialize": "./bin/slv-dat-serialize.js" }, "scripts": { "test0": "npm run generate&& mocha ./test/parse-serialize.js", "test": "npm run generate&& node test/build.js&& mocha test/slv.js test/parse-serialize.js", "rebuild": "node test/build.js", "generate": "pegjs -o src/parsers/slv-raw-parser.js src/parsers/pegjs/slv-raw.pegjs && pegjs -o src/parsers/slv-value-parser.js src/parsers/pegjs/slv-value.pegjs && pegjs -o src/parsers/dat-parser.js src/parsers/pegjs/dat.pegjs && pegjs -o src/parsers/rct-parser.js src/parsers/pegjs/rct.pegjs" }, "repository": { "type": "git", "url": "https://github.com/insysbio/slv-utils.git" }, "keywords": [ "qsp", "cli", "git", "textconv", "dbsolve" ], "author": "Evgeny Metelkin", "license": "Apache-2.0", "bugs": { "url": "https://github.com/insysbio/slv-utils/issues" }, "homepage": "https://github.com/insysbio/slv-utils", "dependencies": { "commander": "^2.20.3", "lodash": "^4.17.21", "nunjucks": "^3.2.3", "pegjs": "^0.10.0" }, "devDependencies": { "chai": "^4.3.4", "mocha": "^9.2.1" } }