Skip to content

Commit 033512d

Browse files
committed
Packaging!
1 parent 7ad24b6 commit 033512d

2 files changed

Lines changed: 66 additions & 0 deletions

File tree

bower.json

Lines changed: 32 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,32 @@
1+
{
2+
"name": "snarkdown",
3+
"main": "snarkdown.js",
4+
"version": "0.5.0",
5+
"homepage": "https://github.com/developit/snarkdown",
6+
"authors": [
7+
"Jason Miller <jason@developit.ca>"
8+
],
9+
"description": "Transform markdown into HTML.",
10+
"moduleType": [
11+
"amd",
12+
"globals",
13+
"node"
14+
],
15+
"keywords": [
16+
"markdown",
17+
"gfm",
18+
"md",
19+
"html",
20+
"parser"
21+
],
22+
"license": "MIT",
23+
"ignore": [
24+
"**/.*",
25+
"node_modules",
26+
"bower_components",
27+
"test",
28+
"tests",
29+
"*.md",
30+
"package.json"
31+
]
32+
}

package.json

Lines changed: 34 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,34 @@
1+
{
2+
"name": "snarkdown",
3+
"description": "Transform Markdown into HTML.",
4+
"version": "0.5.0",
5+
"homepage": "https://github.com/developit/snarkdown",
6+
"authors": [
7+
{
8+
"name": "Jason Miller",
9+
"email": "jason@developit.ca",
10+
"url": "http://developt.ca/"
11+
}
12+
],
13+
"main": "snarkdown.js",
14+
"repository": {
15+
"type": "git",
16+
"url": "https://github.com/developit/snarkdown.git"
17+
},
18+
"bugs": {
19+
"url": "https://github.com/developit/snarkdown/issues"
20+
},
21+
"license": "MIT",
22+
"dependencies": {},
23+
"devDependencies": {},
24+
"keywords": [
25+
"markdown",
26+
"gfm",
27+
"md",
28+
"html",
29+
"parser"
30+
],
31+
"scripts": {
32+
"test": "echo 'No tests defined' && exit 0"
33+
}
34+
}

0 commit comments

Comments
 (0)