sfm-js/package.json

40 lines
1.1 KiB
JSON
Raw Normal View History

2020-01-30 03:33:18 +00:00
{
2021-03-26 14:20:12 +00:00
"name": "mfm-js",
2021-04-14 15:15:54 +00:00
"version": "0.14.1",
2021-03-26 16:48:04 +00:00
"description": "An MFM parser implementation with PEG.js",
2020-01-31 19:29:30 +00:00
"main": "./built/index.js",
"types": "./built/index.d.ts",
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",
"tsd": "tsd",
2021-03-17 06:24:33 +00:00
"parse": "node ./built/cli/parse",
"test": "mocha -r ts-node/register 'test/**/*.ts' && npm run tsd"
2020-01-30 03:33:18 +00:00
},
"repository": {
"type": "git",
2021-03-26 14:20:12 +00:00
"url": "git+https://github.com/misskey-dev/mfm.js.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",
"tsd": "^0.14.0",
2021-03-17 06:24:33 +00:00
"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
}