mmark
Version:
Modern markdown parser.
71 lines (70 loc) • 1.49 kB
JSON
{
"name": "mmark",
"version": "0.1.4",
"description": "Modern markdown parser.",
"repository": {
"url": "egoist/mmark",
"type": "git"
},
"main": "dist/mmark.common.js",
"unpkg": "dist/mmark.js",
"module": "dist/mmark.es.js",
"files": [
"dist"
],
"scripts": {
"test:cov": "jest --coverage && npm run lint",
"test": "jest && npm run lint && npm run build",
"lint": "xo src/*.js",
"fix": "xo src/*.js --fix",
"build": "bili --format umd --format cjs --format es --compress"
},
"author": "egoist <0x142857@gmail.com>",
"license": "MIT",
"jest": {
"testEnvironment": "node"
},
"babel": {
"env": {
"test": {
"presets": [
[
"env",
{
"targets": {
"node": "current"
}
}
]
],
"plugins": [
"transform-async-to-generator"
]
}
}
},
"devDependencies": {
"babel-plugin-transform-async-to-generator": "^6.24.1",
"babel-preset-env": "^1.3.3",
"babel-register": "^6.24.1",
"bili": "^0.14.0",
"eslint-config-rem": "^3.0.0",
"jest-cli": "^18.1.0",
"mz": "^2.6.0",
"xo": "^0.17.1"
},
"xo": {
"extends": "rem",
"esnext": true,
"envs": [
"jest"
],
"rules": {
"complexity": 0,
"no-cond-assign": 0,
"no-unexpected-multiline": 0,
"func-call-spacing": 0,
"no-useless-escape": 0
}
}
}