mirror of
https://activitypub.software/TransFem-org/sfm-js
synced 2024-11-24 23:15:14 +00:00
25 lines
678 B
JSON
25 lines
678 B
JSON
{
|
|
"private": true,
|
|
"name": "mfm-parser-pegjs",
|
|
"version": "0.1.0",
|
|
"scripts": {
|
|
"build": "npm run peg && npm run tsc",
|
|
"build-debug": "npm run peg-debug && npm run tsc",
|
|
"peg": "mkdirp ./built && pegjs -o built/coreParser.js src/coreParser.pegjs",
|
|
"peg-debug": "mkdirp ./built && pegjs -o built/coreParser.js --trace src/coreParser.pegjs",
|
|
"tsc": "tsc"
|
|
},
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "git+https://github.com/marihachi/mfm-parser-pegjs.git"
|
|
},
|
|
"author": "Marihachi",
|
|
"dependencies": {
|
|
},
|
|
"devDependencies": {
|
|
"@types/node": "^12.0.4",
|
|
"mkdirp": "^0.5.1",
|
|
"pegjs": "^0.10.0",
|
|
"typescript": "3.7.x"
|
|
}
|
|
}
|