mirror of
https://github.com/showdownjs/showdown.git
synced 2024-03-22 13:30:55 +08:00
chore(deps): make dependecies consistent with ^ operator
This commit is contained in:
parent
434eaff71e
commit
9828a82629
24
package-lock.json
generated
24
package-lock.json
generated
|
@ -9,14 +9,20 @@
|
||||||
"version": "1.9.1",
|
"version": "1.9.1",
|
||||||
"license": "BSD-3-Clause",
|
"license": "BSD-3-Clause",
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
|
<<<<<<< HEAD
|
||||||
"yargs": "17.2.1"
|
"yargs": "17.2.1"
|
||||||
|
=======
|
||||||
|
"jsdom": "^18.0.1",
|
||||||
|
"yargs": "^17.2.1"
|
||||||
|
>>>>>>> 9c043d8 (chore(deps): make dependecies consistent with ^ operator)
|
||||||
},
|
},
|
||||||
"bin": {
|
"bin": {
|
||||||
"showdown": "bin/showdown.js"
|
"showdown": "bin/showdown.js"
|
||||||
},
|
},
|
||||||
"devDependencies": {
|
"devDependencies": {
|
||||||
"chai": "4.3.x",
|
"chai": "^4.3.4",
|
||||||
"grunt": "^1.4.1",
|
"grunt": "^1.4.1",
|
||||||
|
<<<<<<< HEAD
|
||||||
"grunt-contrib-clean": "2.0.x",
|
"grunt-contrib-clean": "2.0.x",
|
||||||
"grunt-contrib-concat": "2.0.x",
|
"grunt-contrib-concat": "2.0.x",
|
||||||
"grunt-contrib-jshint": "3.1.x",
|
"grunt-contrib-jshint": "3.1.x",
|
||||||
|
@ -32,6 +38,22 @@
|
||||||
"quiet-grunt": "0.2.x",
|
"quiet-grunt": "0.2.x",
|
||||||
"semver": "7.3.x",
|
"semver": "7.3.x",
|
||||||
"semver-sort": "0.0.x",
|
"semver-sort": "0.0.x",
|
||||||
|
=======
|
||||||
|
"grunt-contrib-clean": "^2.0.0",
|
||||||
|
"grunt-contrib-concat": "^2.0.0",
|
||||||
|
"grunt-contrib-jshint": "^3.1.0",
|
||||||
|
"grunt-contrib-uglify": "^5.0.1",
|
||||||
|
"grunt-conventional-changelog": "^6.1.0",
|
||||||
|
"grunt-conventional-github-releaser": "^1.0.0",
|
||||||
|
"grunt-endline": "^0.7.0",
|
||||||
|
"grunt-eslint": "^24.0.0",
|
||||||
|
"grunt-simple-mocha": "^0.4.0",
|
||||||
|
"load-grunt-tasks": "^5.1.0",
|
||||||
|
"performance-now": "^2.1.0",
|
||||||
|
"quiet-grunt": "^0.2.0",
|
||||||
|
"semver": "^7.3.0",
|
||||||
|
"semver-sort": "^0.0.4",
|
||||||
|
>>>>>>> 9c043d8 (chore(deps): make dependecies consistent with ^ operator)
|
||||||
"sinon": "^12.0.1",
|
"sinon": "^12.0.1",
|
||||||
"source-map-support": "^0.5.20"
|
"source-map-support": "^0.5.20"
|
||||||
}
|
}
|
||||||
|
|
33
package.json
33
package.json
|
@ -39,28 +39,27 @@
|
||||||
"showdown": "bin/showdown.js"
|
"showdown": "bin/showdown.js"
|
||||||
},
|
},
|
||||||
"devDependencies": {
|
"devDependencies": {
|
||||||
|
"chai": "^4.3.4",
|
||||||
"chai": "4.3.x",
|
|
||||||
"grunt": "^1.4.1",
|
"grunt": "^1.4.1",
|
||||||
"grunt-contrib-clean": "2.0.x",
|
"grunt-contrib-clean": "^2.0.0",
|
||||||
"grunt-contrib-concat": "2.0.x",
|
"grunt-contrib-concat": "^2.0.0",
|
||||||
"grunt-contrib-jshint": "3.1.x",
|
"grunt-contrib-jshint": "^3.1.0",
|
||||||
"grunt-contrib-uglify": "~5.0.1",
|
"grunt-contrib-uglify": "^5.0.1",
|
||||||
"grunt-conventional-changelog": "6.1.x",
|
"grunt-conventional-changelog": "^6.1.0",
|
||||||
"grunt-conventional-github-releaser": "1.0.x",
|
"grunt-conventional-github-releaser": "^1.0.0",
|
||||||
"grunt-endline": "0.7.x",
|
"grunt-endline": "^0.7.0",
|
||||||
"grunt-eslint": "24.0.x",
|
"grunt-eslint": "^24.0.0",
|
||||||
"grunt-simple-mocha": "0.4.x",
|
"grunt-simple-mocha": "^0.4.0",
|
||||||
"jsdom": "^19.0.0",
|
"jsdom": "^19.0.0",
|
||||||
"load-grunt-tasks": "5.1.x",
|
"load-grunt-tasks": "^5.1.0",
|
||||||
"performance-now": "2.1.x",
|
"performance-now": "^2.1.0",
|
||||||
"quiet-grunt": "0.2.x",
|
"quiet-grunt": "^0.2.0",
|
||||||
"semver": "7.3.x",
|
"semver": "^7.3.0",
|
||||||
"semver-sort": "0.0.x",
|
"semver-sort": "^0.0.4",
|
||||||
"sinon": "^12.0.1",
|
"sinon": "^12.0.1",
|
||||||
"source-map-support": "^0.5.20"
|
"source-map-support": "^0.5.20"
|
||||||
},
|
},
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
"yargs": "17.2.1"
|
"yargs": "^17.2.1"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue
Block a user