sfm-js/package.json

40 lines
1.3 KiB
JSON
Raw Normal View History

2020-01-30 03:33:18 +00:00
{
"name": "mfm-parser-pegjs",
"version": "0.2.0",
2020-02-16 14:27:25 +00:00
"description": "A MFM parser made with PEG.js",
2020-01-31 19:29:30 +00:00
"main": "./built/index.js",
2020-01-30 03:33:18 +00:00
"scripts": {
2020-02-16 14:27:25 +00:00
"build": "npm run tsc && npm run peg && npm run webpack",
"build-dev": "npm run tsc && npm run peg-dev && npm run webpack-dev",
2020-02-22 18:40:57 +00:00
"peg": "mkdirp ./built/parser && pegjs -o built/parser/core-parser.js --allowed-start-rules rootParser,inlineParser,plainParser src/parser/core-parser.pegjs",
"peg-dev": "mkdirp ./built/parser && pegjs -o built/parser/core-parser.js --allowed-start-rules rootParser,inlineParser,plainParser --trace src/parser/core-parser.pegjs",
2020-01-31 19:29:30 +00:00
"tsc": "tsc",
"webpack": "webpack --mode=production",
"webpack-dev": "webpack --mode=development",
2020-02-16 14:27:25 +00:00
"parse": "node ./built/parse"
2020-01-30 03:33:18 +00:00
},
"repository": {
"type": "git",
"url": "git+https://github.com/marihachi/mfm-parser-pegjs.git"
},
"author": "Marihachi",
2020-02-24 13:27:01 +00:00
"license": "MIT",
2020-01-30 03:33:18 +00:00
"devDependencies": {
"@types/node": "^12.0.4",
2020-02-01 07:12:07 +00:00
"@types/parsimmon": "^1.10.1",
2020-02-16 14:27:25 +00:00
"@types/pegjs": "^0.10.1",
2020-01-30 03:33:18 +00:00
"mkdirp": "^0.5.1",
2020-02-01 07:12:07 +00:00
"parsimmon": "^1.13.0",
2020-01-30 03:33:18 +00:00
"pegjs": "^0.10.0",
2020-01-31 19:29:30 +00:00
"ts-loader": "6.2.x",
"typescript": "3.7.x",
"webpack": "4.40.x",
"webpack-cli": "3.3.x"
2020-02-16 14:27:25 +00:00
},
"files": [
2020-02-23 18:09:21 +00:00
"built/index.js",
"built/index.d.ts",
"built/parser"
2020-02-16 14:27:25 +00:00
]
2020-01-30 03:33:18 +00:00
}