sfm-js/package.json
2021-03-20 16:45:21 +09:00

36 lines
1 KiB
JSON

{
"name": "rosee",
"version": "0.5.0",
"description": "A MFM parser implementation with PEG.js",
"main": "./built/index.js",
"scripts": {
"build": "npm run tsc && npm run peg",
"build-debug": "npm run tsc && npm run peg-debug",
"peg": "pegjs -o built/parser.js --allowed-start-rules fullParser,inlineParser,plainParser src/parser.pegjs",
"peg-debug": "pegjs -o built/parser.js --allowed-start-rules fullParser,inlineParser,plainParser --trace src/parser.pegjs",
"tsc": "tsc",
"parse": "node ./built/cli/parse",
"test": "mocha -r ts-node/register 'test/**/*.ts'"
},
"repository": {
"type": "git",
"url": "git+https://github.com/marihachi/rosee.git"
},
"author": "Marihachi",
"license": "MIT",
"devDependencies": {
"@types/mocha": "8.2.x",
"@types/node": "14.14.x",
"@types/pegjs": "0.10.x",
"mocha": "8.3.x",
"pegjs": "0.10.x",
"ts-node": "9.1.x",
"typescript": "4.2.x"
},
"dependencies": {
"twemoji-parser": "13.0.x"
},
"files": [
"built"
]
}