sfm-js/package.json

37 lines
1 KiB
JSON
Raw Normal View History

2020-01-30 03:33:18 +00:00
{
2021-03-19 12:14:51 +00:00
"name": "rosee",
2021-03-20 07:45:21 +00:00
"version": "0.5.0",
2021-03-17 06:24:33 +00:00
"description": "A MFM parser implementation with PEG.js",
2020-01-31 19:29:30 +00:00
"main": "./built/index.js",
2020-01-30 03:33:18 +00:00
"scripts": {
2021-03-17 06:24:33 +00:00
"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",
2020-01-31 19:29:30 +00:00
"tsc": "tsc",
2021-03-17 06:24:33 +00:00
"parse": "node ./built/cli/parse",
"test": "mocha -r ts-node/register 'test/**/*.ts'"
2020-01-30 03:33:18 +00:00
},
"repository": {
"type": "git",
2021-03-19 12:14:51 +00:00
"url": "git+https://github.com/marihachi/rosee.git"
2020-01-30 03:33:18 +00:00
},
"author": "Marihachi",
2020-02-24 13:27:01 +00:00
"license": "MIT",
2020-01-30 03:33:18 +00:00
"devDependencies": {
2021-03-17 06:24:33 +00:00
"@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"
2020-02-16 14:27:25 +00:00
},
"files": [
2021-03-17 06:24:33 +00:00
"built"
2020-02-16 14:27:25 +00:00
]
2020-01-30 03:33:18 +00:00
}