Skip to content

Commit fb9a7fd

Browse files
author
Vitaly Puzrin
committed
Added drafts to publish spec in npm, commonmark#394
1 parent c3350a1 commit fb9a7fd

2 files changed

Lines changed: 22 additions & 0 deletions

File tree

index.js

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
'use strict';
2+
3+
const fs = require('fs');
4+
const path = require('path');
5+
6+
7+
exports.text = fs.readFileSync(path.join(__dirname, 'spec.txt'), 'utf8');

package.json

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
{
2+
"name": "commonmark-spec",
3+
"version": "-",
4+
"description": "Commonmark spec.",
5+
"keywords": [
6+
"commonmark",
7+
"markdown"
8+
],
9+
"repository": "jgm/CommonMark",
10+
"license": "MIT",
11+
"files": [
12+
"index.js",
13+
"spec.txt"
14+
]
15+
}

0 commit comments

Comments
 (0)