summaryrefslogtreecommitdiff
path: root/js/package.json
blob: cd70d4531472561bd0c6e585ac62dca36b9fcf1a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
{ "name": "commonmark",
  "description": "a strongly specified, highly compatible variant of Markdown",
  "version": "0.12.0",
  "homepage": "http://commonmark.org",
  "keywords":
   [ "markdown",
     "commonmark",
     "md",
     "stmd" ],
  "repository":
   { "type": "git",
     "url": "https://github.com/jgm/CommonMark.git" },
  "author": "John MacFarlane",
  "bugs": { "url": "https://github.com/jgm/CommonMark/issues" },
  "license": "BSD-3-Clause",
  "main": "./lib/index.js",
  "bin": { "commonmark": "./bin/commonmark" },
  "scripts": { "test": "node ./test.js" },
  "directories": {
      "lib": "./lib"
  },
  "engines": {
      "node": "*"
  }
}