Skip to content

Commit

Permalink
fix(package): module def
Browse files Browse the repository at this point in the history
  • Loading branch information
arlac77 committed Jan 15, 2019
1 parent 1a7e5c7 commit 7fd1fa6
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,8 @@
"publishConfig": {
"access": "public"
},
"main": "dist/expander.js",
"module": "src/expander.js",
"main": "src/expander.mjs",
"module": "src/expander.mjs",
"description": "Expands expressions in config files",
"keywords": [
"config",
Expand All @@ -18,9 +18,9 @@
"license": "BSD-2-Clause",
"scripts": {
"cover": "c8 --temp-directory build/coverage ava && c8 report -r lcov --temp-directory build/coverage",
"docs": "documentation readme src/expander.js --section=API",
"lint": "documentation lint src/expander.js",
"posttest": "markdown-doctest && npm run prepare",
"docs": "documentation readme src/expander.mjs --section=API",
"lint": "documentation lint src/expander.mjs",
"posttest": "markdown-doctest",
"test": "ava"
},
"dependencies": {
Expand Down

0 comments on commit 7fd1fa6

Please sign in to comment.