Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[Snyk] Fix for 3 vulnerable dependencies #9

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
30 changes: 30 additions & 0 deletions .snyk
Original file line number Diff line number Diff line change
@@ -0,0 +1,30 @@
# Snyk (https://snyk.io) policy file, patches or ignores known vulnerabilities.
version: v1.12.0
ignore: {}
# patches apply the minimum changes required to fix a vulnerability
patch:
'npm:hoek:20180212':
- xes-webpack-core > node-sass > node-gyp > request > hawk > boom > hoek:
patched: '2018-07-21T00:52:50.370Z'
- xes-webpack-core > karma > log4js > loggly > request > hawk > hoek:
patched: '2018-07-21T00:52:50.370Z'
- xes-webpack-core > karma > log4js > loggly > request > hawk > sntp > hoek:
patched: '2018-07-21T00:52:50.370Z'
- xes-webpack-core > karma > log4js > loggly > request > hawk > cryptiles > boom > hoek:
patched: '2018-07-21T00:52:50.370Z'
- xes-webpack-core > node-sass > node-gyp > request > hawk > hoek:
patched: '2018-07-21T00:52:50.370Z'
- xes-webpack-core > karma > log4js > loggly > request > hawk > boom > hoek:
patched: '2018-07-21T00:52:50.370Z'
- xes-webpack-core > node-sass > node-gyp > request > hawk > sntp > hoek:
patched: '2018-07-21T00:52:50.370Z'
- xes-webpack-core > node-sass > node-gyp > request > hawk > cryptiles > boom > hoek:
patched: '2018-07-21T00:52:50.370Z'
'npm:lodash:20180130':
- xes-webpack-core > ejs-loader > lodash:
patched: '2018-07-21T00:52:50.370Z'
- xes-webpack-core > html-critical-webpack-plugin > critical > oust > cheerio > lodash:
patched: '2018-07-21T00:52:50.370Z'
'npm:tunnel-agent:20170305':
- xes-webpack-core > karma > log4js > loggly > request > tunnel-agent:
patched: '2018-07-21T00:52:50.370Z'
238 changes: 121 additions & 117 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,119 +1,123 @@
{
"name": "webpack-scaffold",
"version": "0.10.1",
"description": "",
"main": "src/main.js",
"repository": {
"type": "git",
"url": "https://github.com/Xesenix/webpack-scaffold"
},
"scripts": {
"analyze": "cross-env ANALYZE=true npm run build:prod",
"tdd": "cross-env BABEL_ENV=test ENV=test karma start",
"test": "cross-env BABEL_ENV=test ENV=test karma start --single-run",
"start": "http-server ./dist/demo",
"serve": "cross-env ENV=development HMR=true webpack-dev-server --config webpack.config.js",
"build:dev": "cross-env ENV=development parallel-webpack --config webpack.config.js",
"build:prod": "cross-env ENV=production webpack --config webpack.config.js",
"xi18n": "ts-node ./scripts/extract.ts",
"demo:analyze": "cross-env APP=demo npm run analyze",
"demo:tdd": "cross-env APP=demo npm run tdd",
"demo:test": "cross-env APP=demo npm run test",
"demo:start": "cross-env APP=demo npm run start",
"demo:serve": "cross-env APP=demo npm run serve",
"demo:build:dev": "cross-env APP=demo npm run build:dev",
"demo:build:prod": "cross-env APP=demo npm run build:prod",
"demo:xi18n": "cross-env APP=demo ts-node ./scripts/extract.ts",
"game:analyze": "cross-env APP=game npm run analyze",
"game:tdd": "cross-env APP=game npm run tdd",
"game:test": "cross-env APP=game npm run test",
"game:start": "cross-env APP=game npm run start",
"game:serve": "cross-env APP=game npm run serve",
"game:build:dev": "cross-env APP=game npm run build:dev",
"game:build:prod": "cross-env APP=game npm run build:prod",
"game:xi18n": "cross-env APP=game ts-node ./scripts/extract.ts",
"report-coverage": "cat ./coverage/lcov.info | coveralls"
},
"apps": {
"demo": {
"rootDir": "src/demo",
"outDir": "dist/demo",
"main": [
"main.jsx"
],
"moduleImportPaths": [
"src"
],
"test": "main.test.js",
"template": "templates/index.html",
"templateData": {
"title": "Demo Webpack Scaffold"
},
"assets": [
"assets"
],
"styles": [
"styles/styles.scss",
"styles/banners/a.scss"
],
"stylesImportPaths": [
"src/demo/styles"
],
"languages": [
"en",
"pl"
]
},
"game": {
"rootDir": "src/game",
"outDir": "dist/game",
"main": [
"main.tsx"
],
"moduleImportPaths": [
"src"
],
"test": "main.test.ts",
"templateData": {
"title": "Phaser Game Test"
},
"assets": [
"assets"
],
"stylesImportPaths": [
"styles"
],
"vendor": []
}
},
"author": "Xesenix",
"license": "ISC",
"devDependencies": {
"@types/browserify": "^12.0.33",
"@types/path-exists": "^3.0.0",
"@types/react": "^16.0.38",
"@types/react-dom": "^16.0.4",
"@types/react-test-renderer": "^16.0.1",
"@types/tinycolor2": "^1.4.0",
"browserify": "^16.2.0",
"font-awesome": "^4.7.0",
"inversify": "^4.11.1",
"inversify-vanillajs-helpers": "^2.0.0",
"react-hot-loader": "^4.0.0",
"react-test-renderer": "^16.2.0",
"reflect-metadata": "^0.1.12"
},
"dependencies": {
"@types/istanbul": "^0.4.30",
"cross-env": "^5.1.3",
"istanbul": "github:Xesenix/istanbul",
"phaser": "^3.2.0",
"react": "^16.2.0",
"react-dom": "^16.2.0",
"tinycolor2": "^1.4.1",
"xes-webpack-core": "^0.6.1"
},
"engines": {
"node": ">= 8.0.0"
}
"name": "webpack-scaffold",
"version": "0.10.1",
"description": "",
"main": "src/main.js",
"repository": {
"type": "git",
"url": "https://github.com/Xesenix/webpack-scaffold"
},
"scripts": {
"analyze": "cross-env ANALYZE=true npm run build:prod",
"tdd": "cross-env BABEL_ENV=test ENV=test karma start",
"test": "cross-env BABEL_ENV=test ENV=test karma start --single-run",
"start": "http-server ./dist/demo",
"serve": "cross-env ENV=development HMR=true webpack-dev-server --config webpack.config.js",
"build:dev": "cross-env ENV=development parallel-webpack --config webpack.config.js",
"build:prod": "cross-env ENV=production webpack --config webpack.config.js",
"xi18n": "ts-node ./scripts/extract.ts",
"demo:analyze": "cross-env APP=demo npm run analyze",
"demo:tdd": "cross-env APP=demo npm run tdd",
"demo:test": "cross-env APP=demo npm run test",
"demo:start": "cross-env APP=demo npm run start",
"demo:serve": "cross-env APP=demo npm run serve",
"demo:build:dev": "cross-env APP=demo npm run build:dev",
"demo:build:prod": "cross-env APP=demo npm run build:prod",
"demo:xi18n": "cross-env APP=demo ts-node ./scripts/extract.ts",
"game:analyze": "cross-env APP=game npm run analyze",
"game:tdd": "cross-env APP=game npm run tdd",
"game:test": "cross-env APP=game npm run test",
"game:start": "cross-env APP=game npm run start",
"game:serve": "cross-env APP=game npm run serve",
"game:build:dev": "cross-env APP=game npm run build:dev",
"game:build:prod": "cross-env APP=game npm run build:prod",
"game:xi18n": "cross-env APP=game ts-node ./scripts/extract.ts",
"report-coverage": "cat ./coverage/lcov.info | coveralls",
"snyk-protect": "snyk protect",
"prepare": "npm run snyk-protect"
},
"apps": {
"demo": {
"rootDir": "src/demo",
"outDir": "dist/demo",
"main": [
"main.jsx"
],
"moduleImportPaths": [
"src"
],
"test": "main.test.js",
"template": "templates/index.html",
"templateData": {
"title": "Demo Webpack Scaffold"
},
"assets": [
"assets"
],
"styles": [
"styles/styles.scss",
"styles/banners/a.scss"
],
"stylesImportPaths": [
"src/demo/styles"
],
"languages": [
"en",
"pl"
]
},
"game": {
"rootDir": "src/game",
"outDir": "dist/game",
"main": [
"main.tsx"
],
"moduleImportPaths": [
"src"
],
"test": "main.test.ts",
"templateData": {
"title": "Phaser Game Test"
},
"assets": [
"assets"
],
"stylesImportPaths": [
"styles"
],
"vendor": []
}
},
"author": "Xesenix",
"license": "ISC",
"devDependencies": {
"@types/browserify": "^12.0.33",
"@types/path-exists": "^3.0.0",
"@types/react": "^16.0.38",
"@types/react-dom": "^16.0.4",
"@types/react-test-renderer": "^16.0.1",
"@types/tinycolor2": "^1.4.0",
"browserify": "^16.2.0",
"font-awesome": "^4.7.0",
"inversify": "^4.11.1",
"inversify-vanillajs-helpers": "^2.0.0",
"react-hot-loader": "^4.0.0",
"react-test-renderer": "^16.2.0",
"reflect-metadata": "^0.1.12"
},
"dependencies": {
"@types/istanbul": "^0.4.30",
"cross-env": "^5.1.3",
"istanbul": "github:Xesenix/istanbul",
"phaser": "^3.2.0",
"react": "^16.2.0",
"react-dom": "^16.2.0",
"tinycolor2": "^1.4.1",
"xes-webpack-core": "^0.6.1",
"snyk": "^1.89.0"
},
"engines": {
"node": ">= 8.0.0"
},
"snyk": true
}