Skip to content

Commit

Permalink
Merge 61f3fe1 into cd93b78
Browse files Browse the repository at this point in the history
  • Loading branch information
noamokman committed Oct 31, 2020
2 parents cd93b78 + 61f3fe1 commit 1fcb3c2
Show file tree
Hide file tree
Showing 2 changed files with 1,179 additions and 941 deletions.
45 changes: 24 additions & 21 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -7,10 +7,13 @@
"lint": "run-p lint-*",
"lint-src": "eslint src --fix --ext .ts",
"lint-tests": "eslint __tests__ --fix --ext .ts",
"babel": "babel src -d lib -s",
"build": "rimraf lib && npm run babel",
"babel": "babel src --out-dir lib --extensions \".ts,.tsx\" --source-maps inline",
"type-check": "tsc --noEmit",
"build": "rimraf lib && npm run build:types && npm run build:js",
"build:types": "tsc --emitDeclarationOnly",
"build:js": "babel src --out-dir lib --extensions \".ts,.tsx\" --source-maps inline",
"jest": "jest",
"coveralls": "cat ./coverage/lcov.info | ./node_modules/coveralls/bin/coveralls.js",
"coveralls": "cat coverage/lcov.info | coveralls",
"prepublishOnly": "npm run build",
"test": "npm run lint && npm run jest"
},
Expand Down Expand Up @@ -38,39 +41,39 @@
"*.{ts}": "eslint --fix"
},
"devDependencies": {
"@babel/cli": "^7.10.5",
"@babel/core": "^7.11.4",
"@babel/plugin-proposal-numeric-separator": "^7.10.4",
"@babel/plugin-proposal-object-rest-spread": "^7.11.0",
"@babel/preset-env": "^7.11.0",
"@babel/preset-typescript": "^7.10.4",
"@commitlint/cli": "^9.1.2",
"@commitlint/config-angular": "^9.1.2",
"@babel/cli": "^7.12.1",
"@babel/core": "^7.12.3",
"@babel/plugin-proposal-numeric-separator": "^7.12.1",
"@babel/plugin-proposal-object-rest-spread": "^7.12.1",
"@babel/preset-env": "^7.12.1",
"@babel/preset-typescript": "^7.12.1",
"@commitlint/cli": "^11.0.0",
"@commitlint/config-angular": "^11.0.0",
"@types/configstore": "^4.0.0",
"@types/inquirer": "^7.3.1",
"@types/jest": "^26.0.10",
"@types/jest": "^26.0.15",
"@types/jsonfile": "^6.0.0",
"@types/lodash": "^4.14.160",
"@types/lodash": "^4.14.164",
"@types/nested-error-stacks": "^2.1.0",
"@types/prettyjson": "^0.0.29",
"@types/update-notifier": "^5.0.0",
"@typescript-eslint/eslint-plugin": "^3.10.1",
"babel-core": "^7.0.0-bridge.0",
"babel-jest": "^26.3.0",
"babel-jest": "^26.6.1",
"coveralls": "^3.1.0",
"eslint": "^7.7.0",
"eslint": "^7.12.1",
"eslint-config-noamokman": "^10.1.3",
"eslint-plugin-import": "^2.22.0",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-jest": "^23.20.0",
"eslint-plugin-lodash": "^7.1.0",
"eslint-plugin-unicorn": "^21.0.0",
"husky": "^4.2.5",
"jest": "^26.4.2",
"lint-staged": "^10.2.13",
"husky": "^4.3.0",
"jest": "^26.6.1",
"lint-staged": "^10.5.0",
"memfs": "^3.2.0",
"npm-run-all": "^4.1.5",
"rimraf": "^3.0.2",
"typescript": "^4.0.2"
"typescript": "^4.0.5"
},
"dependencies": {
"caporal": "^1.4.0",
Expand All @@ -80,7 +83,7 @@
"load-json-file": "^6.2.0",
"lodash": "^4.17.20",
"nested-error-stacks": "^2.1.0",
"pretty-error": "^2.1.1",
"pretty-error": "^2.1.2",
"prettyjson": "^1.2.1",
"update-notifier": "^5.0.0",
"write-json-file": "^4.3.0"
Expand Down

0 comments on commit 1fcb3c2

Please sign in to comment.