victory-area
Advanced tools
Comparing version 36.5.3 to 36.6.0
@@ -9,3 +9,3 @@ import _assign from "lodash/assign"; | ||
/*eslint no-magic-numbers: ["error", { "ignore": [-1, 0, 1, 2] }]*/ | ||
/* eslint no-magic-numbers: ["error", { "ignore": [-1, 0, 1, 2] }]*/ | ||
import React from "react"; | ||
@@ -12,0 +12,0 @@ import PropTypes from "prop-types"; |
259
package.json
{ | ||
"name": "victory-area", | ||
"version": "36.5.3", | ||
"version": "36.6.0", | ||
"description": "Area Component for Victory", | ||
@@ -16,2 +16,3 @@ "keywords": [ | ||
"homepage": "https://formidable.com/open-source/victory", | ||
"sideEffects": false, | ||
"main": "lib/index.js", | ||
@@ -25,4 +26,4 @@ "module": "es/index.js", | ||
"prop-types": "^15.8.1", | ||
"victory-core": "^36.5.3", | ||
"victory-vendor": "^36.5.1" | ||
"victory-core": "^36.6.0", | ||
"victory-vendor": "^36.6.0" | ||
}, | ||
@@ -32,7 +33,249 @@ "peerDependencies": { | ||
}, | ||
"devDependencies": { | ||
"victory-chart": "*", | ||
"victory-area": "*" | ||
}, | ||
"wireit": { | ||
"### THESE WIREIT CONFIGS ARE GENERATED ####": {}, | ||
"### DO NOT MODIFY THESE MANUALLY ####": {}, | ||
"build": { | ||
"dependencies": [ | ||
"build:lib", | ||
"build:dist", | ||
"types:create" | ||
] | ||
}, | ||
"build:lib": { | ||
"dependencies": [ | ||
"build:lib:esm", | ||
"build:lib:cjs" | ||
] | ||
}, | ||
"build:lib:esm": { | ||
"command": "nps build:lib:esm", | ||
"files": [ | ||
"src/**", | ||
"!src/**/*.test.*", | ||
"../../.babelrc.build.js" | ||
], | ||
"output": [ | ||
"es/**/*.js", | ||
"es/**/*.js.map" | ||
], | ||
"dependencies": [ | ||
"../victory-core:build:lib:esm", | ||
"../victory-vendor:build:lib:esm" | ||
], | ||
"packageLocks": [ | ||
"pnpm-lock.yaml" | ||
] | ||
}, | ||
"build:lib:cjs": { | ||
"command": "nps build:lib:cjs", | ||
"files": [ | ||
"src/**", | ||
"!src/**/*.test.*", | ||
"../../.babelrc.build.js" | ||
], | ||
"output": [ | ||
"lib/**/*.js", | ||
"lib/**/*.js.map" | ||
], | ||
"dependencies": [ | ||
"../victory-core:build:lib:cjs", | ||
"../victory-vendor:build:lib:cjs" | ||
], | ||
"packageLocks": [ | ||
"pnpm-lock.yaml" | ||
] | ||
}, | ||
"build:dist": { | ||
"dependencies": [ | ||
"build:dist:dev", | ||
"build:dist:min" | ||
] | ||
}, | ||
"build:dist:dev": { | ||
"command": "nps build:dist:dev", | ||
"files": [ | ||
"src/**", | ||
"!src/**/*.test.*", | ||
"../../.babelrc.build.js", | ||
"../../config/webpack.config.js", | ||
"../../config/webpack.config.dev.js" | ||
], | ||
"output": [ | ||
"dist/victory*.js", | ||
"!dist/victory*.min.js*" | ||
], | ||
"dependencies": [ | ||
"../victory-core:build:lib:esm", | ||
"../victory-vendor:build:lib:esm" | ||
], | ||
"packageLocks": [ | ||
"pnpm-lock.yaml" | ||
] | ||
}, | ||
"build:dist:min": { | ||
"command": "nps build:dist:min", | ||
"files": [ | ||
"src/**", | ||
"!src/**/*.test.*", | ||
"../../.babelrc.build.js", | ||
"../../config/webpack.config.js" | ||
], | ||
"output": [ | ||
"dist/victory*.min.js*" | ||
], | ||
"dependencies": [ | ||
"../victory-core:build:lib:esm", | ||
"../victory-vendor:build:lib:esm" | ||
], | ||
"packageLocks": [ | ||
"pnpm-lock.yaml" | ||
] | ||
}, | ||
"types:check": { | ||
"command": "nps types:pkg:check", | ||
"files": [ | ||
"src/**/*.{ts,tsx}", | ||
"../../tsconfig.base.json", | ||
"tsconfig.json" | ||
], | ||
"dependencies": [ | ||
"types:create", | ||
"../victory-core:types:create", | ||
"../victory-vendor:types:create", | ||
"../victory-chart:types:create", | ||
"../victory-voronoi:types:create" | ||
], | ||
"output": [], | ||
"packageLocks": [ | ||
"pnpm-lock.yaml" | ||
] | ||
}, | ||
"types:create": { | ||
"command": "nps types:pkg:create", | ||
"files": [ | ||
"src/**", | ||
"!src/**/*.test.*", | ||
"../../tsconfig.base.json", | ||
"tsconfig.build.json" | ||
], | ||
"output": [ | ||
"es/**/*.d.ts", | ||
"es/**/*.d.ts.map", | ||
"lib/**/*.d.ts", | ||
"lib/**/*.d.ts.map" | ||
], | ||
"dependencies": [ | ||
"../victory-core:types:create", | ||
"../victory-vendor:types:create" | ||
], | ||
"packageLocks": [ | ||
"pnpm-lock.yaml" | ||
] | ||
}, | ||
"format": { | ||
"command": "nps format:pkg", | ||
"files": [ | ||
"src/**", | ||
"*.json", | ||
"../../.prettierignore", | ||
"../../.prettierrc.json" | ||
], | ||
"output": [], | ||
"packageLocks": [ | ||
"pnpm-lock.yaml" | ||
] | ||
}, | ||
"lint": { | ||
"command": "nps lint:pkg", | ||
"files": [ | ||
"src/**", | ||
"../../.eslintignore", | ||
"../../.eslintrc.js" | ||
], | ||
"output": [], | ||
"dependencies": [ | ||
"../victory-vendor:build", | ||
"../victory-core:types:create", | ||
"../victory-vendor:types:create", | ||
"../victory-chart:types:create", | ||
"../victory-voronoi:types:create" | ||
], | ||
"packageLocks": [ | ||
"pnpm-lock.yaml" | ||
] | ||
}, | ||
"format:fix": { | ||
"command": "pnpm run format || nps format:pkg:fix", | ||
"files": [ | ||
"src/**", | ||
"*.json", | ||
"../../.prettierignore", | ||
"../../.prettierrc.json" | ||
], | ||
"output": [], | ||
"packageLocks": [ | ||
"pnpm-lock.yaml" | ||
] | ||
}, | ||
"lint:fix": { | ||
"command": "pnpm run lint || nps lint:pkg:fix", | ||
"files": [ | ||
"src/**", | ||
"../../.eslintignore", | ||
"../../.eslintrc.js" | ||
], | ||
"output": [], | ||
"dependencies": [ | ||
"../victory-vendor:build", | ||
"../victory-core:types:create", | ||
"../victory-vendor:types:create", | ||
"../victory-chart:types:create", | ||
"../victory-voronoi:types:create" | ||
], | ||
"packageLocks": [ | ||
"pnpm-lock.yaml" | ||
] | ||
}, | ||
"jest": { | ||
"command": "nps jest:pkg", | ||
"files": [ | ||
"src/**/*.test.*", | ||
"../../.babelrc.js", | ||
"../../test/jest-config.js", | ||
"../../test/jest-setup.ts" | ||
], | ||
"output": [], | ||
"dependencies": [ | ||
"build:lib:cjs", | ||
"../victory-chart:build:lib:cjs", | ||
"../victory-vendor:build:lib:cjs", | ||
"../victory-voronoi:build:lib:cjs" | ||
], | ||
"packageLocks": [ | ||
"pnpm-lock.yaml" | ||
] | ||
} | ||
}, | ||
"scripts": { | ||
"version": "yarn run nps build-libs && nps build-dists" | ||
}, | ||
"sideEffects": false, | ||
"gitHead": "55338af3c57eacca5956e53c08a58e47ba41d01e" | ||
} | ||
"### THESE SCRIPTS ARE GENERATED ###": "true", | ||
"### DO NOT MODIFY THESE MANUALLY ###": "true", | ||
"build": "wireit", | ||
"build:lib": "wireit", | ||
"build:lib:esm": "wireit", | ||
"build:lib:cjs": "wireit", | ||
"build:dist": "wireit", | ||
"build:dist:dev": "wireit", | ||
"build:dist:min": "wireit", | ||
"types:check": "wireit", | ||
"types:create": "wireit", | ||
"format": "wireit", | ||
"format:fix": "wireit", | ||
"lint": "wireit", | ||
"lint:fix": "wireit", | ||
"jest": "wireit" | ||
} | ||
} |
Sorry, the diff of this file is too big to display
Sorry, the diff of this file is too big to display
Sorry, the diff of this file is not supported yet
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
New author
Supply chain riskA new npm collaborator published a version of the package for the first time. New collaborators are usually benign additions to a project, but do indicate a change to the security surface area of a package.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
New author
Supply chain riskA new npm collaborator published a version of the package for the first time. New collaborators are usually benign additions to a project, but do indicate a change to the security surface area of a package.
Found 1 instance in 1 package
Uses eval
Supply chain riskPackage uses dynamic code execution (e.g., eval()), which is a dangerous practice. This can prevent the code from running in certain environments and increases the risk that the code may contain exploits or malicious behavior.
Found 1 instance in 1 package
1433142
26
23674
3
2
Updatedvictory-core@^36.6.0
Updatedvictory-vendor@^36.6.0