UNPKG

@transferwise/neptune-validation

Version:
72 lines 2.02 kB
{ "name": "@transferwise/neptune-validation", "version": "3.3.1", "description": "Neptune Web validation", "license": "Apache-2.0", "keywords": [ "wise", "neptune-web-validation" ], "repository": { "type": "git", "fullname": "transferwise/neptune-web", "url": "git+https://github.com/transferwise/neptune-web.git" }, "author": "Wise Payments Ltd.", "sideEffects": [ "*.css" ], "main": "./dist/index.js", "module": "./dist/index.mjs", "types": "./dist/index.d.ts", "exports": { ".": { "types": "./dist/index.d.ts", "import": "./dist/index.mjs", "require": "./dist/index.js" } }, "files": [ "dist/", "src/", "!**/*.tsbuildinfo" ], "dependencies": { "@babel/runtime": "^7.27.3", "core-js": "^3.42.0" }, "devDependencies": { "@babel/core": "^7.27.3", "@babel/plugin-transform-runtime": "^7.27.3", "@babel/preset-env": "^7.27.2", "@babel/preset-typescript": "^7.27.1", "@rollup/plugin-babel": "^6.0.4", "@rollup/plugin-node-resolve": "^16.0.1", "@rollup/plugin-typescript": "^12.1.2", "@tsconfig/recommended": "^1.0.8", "@types/babel__core": "^7.20.5", "@types/jest": "^29.5.14", "@wise/eslint-config": "^12.3.0", "eslint": "^9.27.0", "jest": "^29.7.0", "rollup": "^4.41.1", "@wise/wds-configs": "0.0.0" }, "publishConfig": { "access": "public" }, "scripts": { "test": "jest", "test:watch": "jest --watch", "lint": "pnpm run lint:check", "lint:check": "npm-run-all --parallel lint:check:*", "lint:check:format": "prettier --check --ignore-path ../../.prettierignore .", "lint:check:js+ts": "eslint .", "lint:fix": "npm-run-all --serial lint:fix:*", "lint:fix:format": "prettier --write --ignore-path ../../.prettierignore .", "lint:fix:js+ts": "pnpm run lint:check:js+ts --fix", "build": "npm-run-all build:*", "build:clean": "rm -rf dist", "build:js": "rollup --config --sourcemap" } }