Socket
Socket
Sign inDemoInstall

@blueprintjs/datetime

Package Overview
Dependencies
Maintainers
1
Versions
253
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@blueprintjs/datetime - npm Package Compare versions

Comparing version 5.2.6 to 5.2.7

190

package.json
{
"name": "@blueprintjs/datetime",
"version": "5.2.6",
"description": "Components for interacting with dates and times",
"main": "lib/cjs/index.js",
"module": "lib/esm/index.js",
"esnext": "lib/esnext/index.js",
"typings": "lib/esm/index.d.ts",
"style": "lib/css/blueprint-datetime.css",
"unpkg": "dist/datetime.bundle.js",
"files": [
"dist",
"lib",
"src"
],
"sideEffects": [
"**/*.css"
],
"scripts": {
"clean": "rm -rf dist/* || rm -rf lib/* || true",
"compile": "run-p \"compile:*\"",
"compile:esm": "tsc -p ./src",
"compile:cjs": "tsc -p ./src -m commonjs --verbatimModuleSyntax false --outDir lib/cjs",
"compile:esnext": "tsc -p ./src -t esnext --outDir lib/esnext",
"compile:css": "sass-compile ./src",
"dev": "run-p \"compile:esm --watch\" \"compile:css --watch\"",
"dist": "run-s \"dist:*\"",
"dist:bundle": "NODE_ENV=production webpack",
"dist:css": "css-dist lib/css",
"dist:verify": "assert-package-layout",
"lint": "run-p lint:scss lint:es",
"lint:scss": "sass-lint",
"lint:es": "es-lint",
"lint-fix": "es-lint --fix && sass-lint --fix",
"test": "run-s test:typeCheck test:iso test:karma",
"test:typeCheck": "tsc -p ./test",
"test:iso": "mocha test/isotest.js",
"test:karma": "karma start",
"test:karma:debug": "karma start --single-run=false --reporters=helpful --debug",
"verify": "npm-run-all compile -p dist test lint"
},
"dependencies": {
"@blueprintjs/core": "workspace:^",
"@blueprintjs/icons": "workspace:^",
"@blueprintjs/select": "workspace:^",
"classnames": "^2.3.1",
"date-fns": "^2.28.0",
"date-fns-tz": "^2.0.0",
"lodash": "^4.17.21",
"react-day-picker": "7.4.9",
"tslib": "~2.6.2"
},
"peerDependencies": {
"@types/react": "^16.14.32 || 17",
"react": "^16.8 || 17",
"react-dom": "^16.8 || 17"
},
"peerDependenciesMeta": {
"@types/react": {
"optional": true
}
},
"devDependencies": {
"@blueprintjs/colors": "workspace:^",
"@blueprintjs/karma-build-scripts": "workspace:^",
"@blueprintjs/node-build-scripts": "workspace:^",
"@blueprintjs/test-commons": "workspace:^",
"@types/lodash": "~4.14.201",
"enzyme": "^3.11.0",
"karma": "^6.4.2",
"mocha": "^10.2.0",
"npm-run-all": "^4.1.5",
"react": "^16.14.0",
"react-dom": "^16.14.0",
"react-test-renderer": "^16.14.0",
"typescript": "~5.2.2",
"webpack-cli": "^5.1.4"
},
"repository": {
"type": "git",
"url": "git@github.com:palantir/blueprint.git",
"directory": "packages/datetime"
},
"keywords": [
"palantir",
"blueprint",
"theme",
"react",
"day",
"picker",
"date",
"time"
],
"author": "Palantir Technologies",
"license": "Apache-2.0"
}
"name": "@blueprintjs/datetime",
"version": "5.2.7",
"description": "Components for interacting with dates and times",
"main": "lib/cjs/index.js",
"module": "lib/esm/index.js",
"esnext": "lib/esnext/index.js",
"typings": "lib/esm/index.d.ts",
"style": "lib/css/blueprint-datetime.css",
"unpkg": "dist/datetime.bundle.js",
"files": [
"dist",
"lib",
"src"
],
"sideEffects": [
"**/*.css"
],
"scripts": {
"clean": "rm -rf dist/* || rm -rf lib/* || true",
"compile": "run-p \"compile:*\"",
"compile:esm": "tsc -p ./src",
"compile:cjs": "tsc -p ./src -m commonjs --verbatimModuleSyntax false --outDir lib/cjs",
"compile:esnext": "tsc -p ./src -t esnext --outDir lib/esnext",
"compile:css": "sass-compile ./src",
"dev": "run-p \"compile:esm --watch\" \"compile:css --watch\"",
"dist": "run-s \"dist:*\"",
"dist:bundle": "NODE_ENV=production webpack",
"dist:css": "css-dist lib/css",
"dist:verify": "assert-package-layout",
"lint": "run-p lint:scss lint:es",
"lint:scss": "sass-lint",
"lint:es": "es-lint",
"lint-fix": "es-lint --fix && sass-lint --fix",
"test": "run-s test:typeCheck test:iso test:karma",
"test:typeCheck": "tsc -p ./test",
"test:iso": "mocha test/isotest.js",
"test:karma": "karma start",
"test:karma:debug": "karma start --single-run=false --reporters=helpful --debug",
"verify": "npm-run-all compile -p dist test lint"
},
"dependencies": {
"@blueprintjs/core": "^5.7.1",
"@blueprintjs/icons": "^5.4.1",
"@blueprintjs/select": "^5.0.19",
"classnames": "^2.3.1",
"date-fns": "^2.28.0",
"date-fns-tz": "^2.0.0",
"lodash": "^4.17.21",
"react-day-picker": "7.4.9",
"tslib": "~2.6.2"
},
"peerDependencies": {
"@types/react": "^16.14.32 || 17",
"react": "^16.8 || 17",
"react-dom": "^16.8 || 17"
},
"peerDependenciesMeta": {
"@types/react": {
"optional": true
}
},
"devDependencies": {
"@blueprintjs/colors": "^5.0.7",
"@blueprintjs/karma-build-scripts": "^5.2.2",
"@blueprintjs/node-build-scripts": "^9.0.1",
"@blueprintjs/test-commons": "^2.2.1",
"@types/lodash": "~4.14.201",
"enzyme": "^3.11.0",
"karma": "^6.4.2",
"mocha": "^10.2.0",
"npm-run-all": "^4.1.5",
"react": "^16.14.0",
"react-dom": "^16.14.0",
"react-test-renderer": "^16.14.0",
"typescript": "~5.2.2",
"webpack-cli": "^5.1.4"
},
"repository": {
"type": "git",
"url": "git@github.com:palantir/blueprint.git",
"directory": "packages/datetime"
},
"keywords": [
"palantir",
"blueprint",
"theme",
"react",
"day",
"picker",
"date",
"time"
],
"author": "Palantir Technologies",
"license": "Apache-2.0"
}
SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc