UNPKG

remarkable-admonitions

Version:
75 lines (74 loc) 2.19 kB
{ "name": "remarkable-admonitions", "version": "0.2.2", "description": "A remarkable plugin to add admonitions support", "repository": "https://github.com/favoloso/remarkable-admonitions.git", "author": "Leonardo Ascione <leonardo@favoloso.team>", "license": "MIT", "scripts": { "dev": "babel src -w -d lib -x '.ts,.tsx'", "build": "yarn build:lib && yarn build:types", "prebuild:lib": "rm -rf lib", "build:lib": "babel src -d lib -x '.ts,.tsx'", "build:types": "tsc --emitDeclarationOnly", "check-types": "tsc --noEmit", "release": "yarn test && yarn build && release-it", "test": "jest", "test:dev": "jest --watch", "test:ci": "jest --ci --runInBand --coverage --reporters=default --reporters=jest-junit" }, "files": [ "/lib" ], "main": "lib/index.js", "types": "lib/index.d.ts", "keywords": [ "remarkable-plugin", "docusaurus-plugin", "callout", "markdown" ], "husky": { "hooks": { "commit-msg": "emoji-commit-lint" } }, "release-it": { "git": { "tagName": "v${version}", "commitMessage": "🔖 v${version}" }, "github": { "release": true }, "increment": "conventional:@favoloso/emoji", "scripts": { "changelog": "./node_modules/.bin/conventional-changelog -p @favoloso/emoji | tail -n +3", "beforeStage": "./node_modules/.bin/conventional-changelog -p @favoloso/emoji -i CHANGELOG.md -s" } }, "publishConfig": { "registry": "https://registry.npmjs.org/" }, "devDependencies": { "@babel/cli": "^7.2.3", "@babel/core": "^7.3.4", "@babel/preset-env": "^7.3.4", "@babel/preset-typescript": "^7.3.3", "@favoloso/conventional-changelog-emoji": "^0.9.0", "@types/dedent": "^0.7.0", "@types/jest": "^24.0.11", "@types/remarkable": "^1.7.2", "babel-jest": "^24.3.1", "babel-plugin-add-module-exports": "^1.0.0", "conventional-changelog-cli": "^2.0.12", "dedent": "^0.7.0", "husky": "^1.3.1", "jest": "^24.3.1", "jest-junit": "^6.3.0", "prettier": "^1.16.4", "release-it": "^10.3.1", "remarkable": "^1.7.1", "typescript": "^3.3.3333" } }