showdown/package.json

66 lines
1.5 KiB
JSON
Raw Normal View History

{
2015-01-05 05:27:45 +08:00
"name": "showdown",
2017-12-22 23:28:41 +08:00
"version": "2.0.0-alpha1",
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"
],
"repository": {
"type": "git",
"url": "https://github.com/showdownjs/showdown.git",
"web": "https://github.com/showdownjs/showdown"
},
2016-01-20 10:46:43 +08:00
"license": "BSD-3-Clause",
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
},
2015-01-05 05:27:45 +08:00
"devDependencies": {
"chai": "4.1.x",
"grunt": "^1.0.3",
"grunt-contrib-clean": "1.1.x",
"grunt-contrib-concat": "1.0.x",
"grunt-contrib-jshint": "1.1.x",
"grunt-contrib-uglify": "~3.3.0",
"grunt-conventional-changelog": "6.1.x",
"grunt-conventional-github-releaser": "1.0.x",
"grunt-endline": "0.6.x",
"grunt-eslint": "19.0.x",
"grunt-simple-mocha": "0.4.x",
"load-grunt-tasks": "3.5.x",
"performance-now": "2.0.x",
"quiet-grunt": "0.2.x",
"semver": "5.4.x",
"semver-sort": "0.0.x",
"sinon": "^5.1.1",
2018-09-14 21:21:20 +08:00
"source-map-support": "^0.5.9"
2015-07-13 12:09:03 +08:00
},
"dependencies": {
2018-07-08 02:12:34 +08:00
"jsdom": "^11.0.0",
2018-09-14 21:21:20 +08:00
"yargs": "^12.0.2"
2015-01-05 05:27:45 +08:00
}
}