Skip to content

Commit 3465f27

Browse files
vassudanaguntajgm
authored andcommitted
Fixed invalid package.json dependency entries.
Removed space chars that were resulting in invalid dependency declarations, which were masked by the fact that Markdown-it's package.json happened to install these dependencies correctly.
1 parent 0a304ac commit 3465f27

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

package.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -23,10 +23,10 @@
2323
"test": "node ./test/test.js"
2424
},
2525
"dependencies": {
26-
"entities": "~ 1.1.1",
27-
"mdurl": "~ 1.0.1",
26+
"entities": "~1.1.1",
27+
"mdurl": "~1.0.1",
2828
"string.prototype.repeat": "^0.2.0",
29-
"minimist": "~ 1.2.0"
29+
"minimist": "~1.2.0"
3030
},
3131
"directories": {
3232
"lib": "./lib"

0 commit comments

Comments
 (0)