daml/docs/theme/package.json
Stefano Baghino 9ed1eb3ce3
Address security notice on ansi-regex (#11243)
* Address security notice on `ansi-regex`

Addressed this via resolution of `chalk` on a common version
which seems close enough to other old versions not to break
anything (tested manually) while removing the `ansi-regex`
transitive dependency that causes our daily builds to break.

Also removed `package-lock.json` since we are using `yarn`.

changelog_begin
changelog_end
2021-10-14 11:15:34 +00:00

32 lines
768 B
JSON

{
"name": "da_theme",
"main": "js/theme.js",
"version": "1.0.0",
"private": true,
"resolutions": {
"**/elliptic": "^6.5.4",
"**/chalk": "^2.4.1"
},
"devDependencies": {
"bower": "^1.8.8",
"browserify": "^13.0.0",
"connect-livereload": "~0.6.0",
"grunt": "^1.0.4",
"grunt-banner": "^0.6.0",
"grunt-browserify": "^6.0.0",
"grunt-contrib-clean": "^1.0.0",
"grunt-contrib-connect": "^1.0.2",
"grunt-contrib-copy": "~1.0.0",
"grunt-contrib-sass": "~1.0.0",
"grunt-contrib-uglify": "~3.3.0",
"grunt-contrib-watch": "^1.1.0",
"grunt-exec": "~1.0.1",
"grunt-open": "^0.2.4"
},
"scripts": {
"bower": "bower install",
"grunt": "grunt 'build'",
"preview": "npm install && grunt"
}
}