showdown/package.json

74 lines
1.7 KiB
JSON
Raw Normal View History

{
2015-01-05 05:27:45 +08:00
"name": "showdown",
"version": "2.0.0",
2015-01-16 05:21:33 +08:00
"description": "A Markdown to HTML converter written in Javascript",
"author": "Estevão Santos",
2017-12-10 03:13:05 +08:00
"homepage": "http://showdownjs.com/",
"keywords": [
"markdown",
"converter"
],
2015-01-05 05:27:45 +08:00
"contributors": [
"John Gruber",
"John Fraser",
"Corey Innis",
"Remy Sharp",
"Konstantin Käfer",
"Roger Braun",
"Dominic Tarr",
"Cat Chen",
"Titus Stone",
"Rob Sutherland",
"Pavel Lang",
"Ben Combee",
"Adam Backstrom",
"Pascal Deschênes",
"Estevão Santos"
],
2022-03-09 22:47:44 +08:00
"funding": {
2022-03-09 23:19:34 +08:00
"type": "individual",
"url": "https://www.paypal.me/tiviesantos"
2022-03-09 22:47:44 +08:00
},
2015-01-05 05:27:45 +08:00
"repository": {
"type": "git",
"url": "https://github.com/showdownjs/showdown.git",
"web": "https://github.com/showdownjs/showdown"
},
2021-11-10 13:30:26 +08:00
"license": "MIT",
2015-01-16 05:21:33 +08:00
"main": "./dist/showdown.js",
2015-01-05 05:27:45 +08:00
"scripts": {
"test": "grunt test"
2015-01-05 05:27:45 +08:00
},
2015-02-01 08:56:32 +08:00
"bin": {
2015-07-13 12:09:03 +08:00
"showdown": "bin/showdown.js"
2015-02-01 08:56:32 +08:00
},
"files": [
"bin",
"dist"
],
2015-01-05 05:27:45 +08:00
"devDependencies": {
"chai": "*",
"chai-match": "*",
"grunt": "^1.4.1",
"grunt-contrib-clean": "^2.0.0",
"grunt-contrib-concat": "^2.0.0",
"grunt-contrib-jshint": "^3.1.0",
"grunt-contrib-uglify": "^5.0.1",
"grunt-conventional-changelog": "^6.1.0",
"grunt-conventional-github-releaser": "^1.0.0",
"grunt-endline": "^0.7.0",
"grunt-eslint": "^24.0.0",
"grunt-simple-mocha": "^0.4.0",
"load-grunt-tasks": "^5.1.0",
"performance-now": "^2.1.0",
"quiet-grunt": "^0.2.0",
"sinon": "*",
2022-03-09 23:19:34 +08:00
"source-map-support": "^0.5.21",
"semver-sort": "^1.0.0"
2015-07-13 12:09:03 +08:00
},
"dependencies": {
2022-03-09 23:19:34 +08:00
"commander": "^9.0.0",
"jsdom": "^19.0.0"
2015-01-05 05:27:45 +08:00
}
}