aboutsummaryrefslogtreecommitdiff
path: root/package.json
diff options
context:
space:
mode:
authorache <ache@ache.one>2018-12-30 08:08:44 +0100
committerache <ache@ache.one>2018-12-30 08:10:16 +0100
commit26c4c8998ee2cb84c8ce57a79042881cb1ada385 (patch)
tree520e14afe201a8e0e8497769ac52e123f57128d7 /package.json
parentClean the code and description (diff)
Distribution with babel
Diffstat (limited to 'package.json')
-rw-r--r--package.json16
1 files changed, 11 insertions, 5 deletions
diff --git a/package.json b/package.json
index 7785f2a..db64a85 100644
--- a/package.json
+++ b/package.json
@@ -1,25 +1,31 @@
{
"name": "remark-line-input",
- "version": "0.3.2",
+ "version": "0.4.0",
"description": "A remark plugin to parse line input syntax",
- "main": "app.js",
+ "main": "dist/index.js",
"scripts": {
"pretest": "xo",
- "test": "ava",
- "start": "node app.js"
+ "prepare": "del-cli dist && cross-env BABEL_ENV=production babel src --out-dir dist",
+ "test": "ava"
},
"dependencies": {
"md-attr-parser": "^1.0.0"
},
"author": "ache",
- "license": "MIT",
+ "license": "GPL-3.0-or-later",
"keywords": [
"line",
"input",
"remark"
],
"devDependencies": {
+ "@babel/cli": "^7.1.5",
+ "@babel/core": "^7.1.5",
+ "@babel/plugin-proposal-object-rest-spread": "^7.0.0",
+ "@babel/preset-env": "^7.1.5",
"ava": "^0.25.0",
+ "cross-env": "^5.2.0",
+ "del-cli": "^1.1.0",
"dom5": "^3.0.0",
"parse5": "^5.0.0",
"rehype-raw": "^3.0.0",