|
| 1 | +{ |
| 2 | + "name": "lc-validator-fields-match", |
| 3 | + "version": "1.0.0", |
| 4 | + "description": "", |
| 5 | + "main": "index.js", |
| 6 | + "keywords": [], |
| 7 | + "author": "", |
| 8 | + "license": "ISC", |
| 9 | + "scripts": { |
| 10 | + "clean": "rimraf build", |
| 11 | + "typecheck": "tsc --pretty --noEmit", |
| 12 | + "typecheck:watch": "npm run typecheck -- --watch", |
| 13 | + "build": "npm run clean && npm run typecheck && npm run build:lib && npm run build:lib:esm && npm run build:umd && npm run build:umd:min && npm run build:es && npm run build:copyfiles", |
| 14 | + "build:lib": "cross-env BABEL_ENV=es5_cjs babel ./src --out-dir ./build/lib --ignore 'src/**/*.test.ts,src/**/*.test.js' --extensions '.ts,.js'", |
| 15 | + "build:lib:esm": "cross-env BABEL_ENV=es5_esm babel ./src/index.ts --out-file ./build/lib/index.esm.js", |
| 16 | + "build:es": "cross-env BABEL_ENV=es babel ./src --out-dir ./build/es --ignore 'src/**/*.test.ts,src/**/*.test.js' --extensions '.ts,.js'", |
| 17 | + "build:umd": "cross-env BABEL_ENV=umd NODE_ENV=development webpack", |
| 18 | + "build:umd:min": "cross-env BABEL_ENV=umd NODE_ENV=production webpack -p", |
| 19 | + "build:copyfiles": "copyfiles package.json index.d.ts readme.md LICENSE build", |
| 20 | + "test": "cross-env NODE_ENV=test jest --verbose --config jest.json", |
| 21 | + "test:watch": "cross-env NODE_ENV=test jest --verbose --watchAll --config jest.json", |
| 22 | + "lint": "tslint --project . --format stylish", |
| 23 | + "lint:fix": "prettier --write src/**/*.{ts,tsx,js,jsx} && tslint --project . --fix", |
| 24 | + "prerelease": "npm run lint:fix && npm run test && npm run build", |
| 25 | + "release": "npm publish ./build", |
| 26 | + "release:local": "npm install ./build -g" |
| 27 | + }, |
| 28 | + "dependencies": { |
| 29 | + "lc-form-validation": "^2.0.0" |
| 30 | + }, |
| 31 | + "peerDependencies": { |
| 32 | + "lc-form-validation": "^2.0.0" |
| 33 | + }, |
| 34 | + "devDependencies": { |
| 35 | + "@babel/cli": "^7.1.0", |
| 36 | + "@babel/core": "^7.1.0", |
| 37 | + "@babel/plugin-proposal-class-properties": "^7.1.0", |
| 38 | + "@babel/plugin-proposal-object-rest-spread": "^7.0.0", |
| 39 | + "@babel/preset-env": "^7.1.0", |
| 40 | + "@babel/preset-typescript": "^7.1.0", |
| 41 | + "@babel/register": "^7.0.0", |
| 42 | + "@types/jest": "^23.3.2", |
| 43 | + "babel-core": "^7.0.0-bridge.0", |
| 44 | + "babel-jest": "^23.6.0", |
| 45 | + "babel-loader": "^8.0.2", |
| 46 | + "compression-webpack-plugin": "^2.0.0", |
| 47 | + "copyfiles": "^2.1.0", |
| 48 | + "cross-env": "^5.2.0", |
| 49 | + "jest": "^23.6.0", |
| 50 | + "prettier": "^1.14.3", |
| 51 | + "rimraf": "^2.6.2", |
| 52 | + "ts-jest": "^23.10.1", |
| 53 | + "tslint": "^5.11.0", |
| 54 | + "typescript": "^3.0.3", |
| 55 | + "webpack": "^4.19.1", |
| 56 | + "webpack-cli": "^3.1.0" |
| 57 | + } |
| 58 | +} |
0 commit comments