aboutsummaryrefslogtreecommitdiff
path: root/package.json
diff options
context:
space:
mode:
Diffstat (limited to 'package.json')
-rw-r--r--package.json33
1 files changed, 33 insertions, 0 deletions
diff --git a/package.json b/package.json
new file mode 100644
index 0000000..698be3a
--- /dev/null
+++ b/package.json
@@ -0,0 +1,33 @@
+{
+ "name": "markdown-attribute-parser",
+ "version": "1.0.0",
+ "description": "A parser for pandoc-style markdown's attributes",
+ "main": "src/index.js",
+ "scripts": {
+ "pretest": "xo",
+ "test": "ava"
+ },
+ "repository": {
+ "type": "git",
+ "url": "srv:git/markdown-attribute-parser"
+ },
+ "keywords": [
+ "markdown",
+ "attribute"
+ ],
+ "devDependencies": {
+ "ava": "^0.25.0",
+ "xo": "^0.18.2"
+ },
+ "license": "GPL-3.0",
+ "xo": {
+ "space": true,
+ "rules": {
+ "comma-dangle": [
+ "error",
+ "always-multiline"
+ ]
+ }
+ },
+ "author": "ache <ache@ache.one>"
+}