Update package.json

This commit is contained in:
Yarmo Mackenbach 2020-08-08 01:04:47 +02:00
parent cb077596f0
commit 814d1e3c9a
2 changed files with 19 additions and 1 deletions

15
package-lock.json generated
View file

@ -905,6 +905,21 @@
"uc.micro": "^1.0.5" "uc.micro": "^1.0.5"
} }
}, },
"markdown-it-anchor": {
"version": "5.3.0",
"resolved": "https://registry.npmjs.org/markdown-it-anchor/-/markdown-it-anchor-5.3.0.tgz",
"integrity": "sha512-/V1MnLL/rgJ3jkMWo84UR+K+jF1cxNG1a+KwqeXqTIJ+jtA8aWSHuigx8lTzauiIjBDbwF3NcWQMotd0Dm39jA=="
},
"markdown-it-table-of-contents": {
"version": "0.4.4",
"resolved": "https://registry.npmjs.org/markdown-it-table-of-contents/-/markdown-it-table-of-contents-0.4.4.tgz",
"integrity": "sha512-TAIHTHPwa9+ltKvKPWulm/beozQU41Ab+FIefRaQV1NRnpzwcV9QOe6wXQS5WLivm5Q/nlo0rl6laGkMDZE7Gw=="
},
"markdown-it-title": {
"version": "3.0.0",
"resolved": "https://registry.npmjs.org/markdown-it-title/-/markdown-it-title-3.0.0.tgz",
"integrity": "sha512-iHZptfptAXGJlcboqWxUSWNkJLUyxZ452CobBzkQ7MtwfVhTI77W1LTAy+miQTqo3U+wkDUOFhhXj2XUD0dVWQ=="
},
"mdurl": { "mdurl": {
"version": "1.0.1", "version": "1.0.1",
"resolved": "https://registry.npmjs.org/mdurl/-/mdurl-1.0.1.tgz", "resolved": "https://registry.npmjs.org/mdurl/-/mdurl-1.0.1.tgz",

View file

@ -6,13 +6,16 @@
"dependencies": { "dependencies": {
"express": "^4.17.1", "express": "^4.17.1",
"jstransformer-markdown-it": "^2.1.0", "jstransformer-markdown-it": "^2.1.0",
"markdown-it-anchor": "^5.3.0",
"markdown-it-table-of-contents": "^0.4.4",
"markdown-it-title": "^3.0.0",
"pug": "^3.0.0" "pug": "^3.0.0"
}, },
"devDependencies": { "devDependencies": {
"license-check-and-add": "^3.0.4" "license-check-and-add": "^3.0.4"
}, },
"scripts": { "scripts": {
"main": "node public/index.js", "main": "node index.js",
"license:check": "./node_modules/license-check-and-add/dist/src/cli.js check", "license:check": "./node_modules/license-check-and-add/dist/src/cli.js check",
"license:add": "./node_modules/license-check-and-add/dist/src/cli.js add", "license:add": "./node_modules/license-check-and-add/dist/src/cli.js add",
"license:remove": "./node_modules/license-check-and-add/dist/src/cli.js remove", "license:remove": "./node_modules/license-check-and-add/dist/src/cli.js remove",