Skip to content

Commit

Permalink
Merge pull request #7 from leapfrogtechnology/cleanup
Browse files Browse the repository at this point in the history
Cleanup and update dependencies
mesaugat authored Jul 10, 2019
2 parents cca4848 + 4088ed0 commit 982115f
Showing 2 changed files with 312 additions and 1,009 deletions.
37 changes: 21 additions & 16 deletions package.json
Original file line number Diff line number Diff line change
@@ -13,11 +13,11 @@
"lint:fix": "tslint --fix -c tslint.json 'src/**/*.{ts,js}' 'test/**/*.{ts,js}'",
"transpile": "tsc",
"clean": "rimraf dist",
"build": "cross-env NODE_ENV=production run-s clean transpile",
"test": "cross-env NODE_ENV=test mocha --recursive test/**/*.test.ts",
"test:watch": "cross-env NODE_ENV=test mocha --watch --recursive test/**/*.test.ts",
"build": "NODE_ENV=production yarn clean && yarn transpile",
"test": "NODE_ENV=test mocha --recursive test/**/*.test.ts",
"test:watch": "NODE_ENV=test mocha --watch --recursive test/**/*.test.ts",
"watch": "tsc --watch",
"prettify": "prettier --single-quote --parser typescript --print-width 120 --write './**/*.{ts,js,tsx}'",
"prettify": "prettier --single-quote --parser typescript --print-width 120 --write './**/*.{ts,js}'",
"prepublishOnly": "yarn build",
"changelog": "./release.sh changelog",
"release": "./release.sh bump"
@@ -31,15 +31,22 @@
"lint-staged": {
"*.{ts,js}": [
"tslint --fix -c tslint.json",
"prettier --single-quote --parser typescript --print-width 120 --write './**/*.{ts,js,tsx}'",
"prettier --single-quote --parser typescript --print-width 120 --write './**/*.{ts,js}'",
"git add"
]
},
"keywords": [
"typescript",
"javascript",
"node",
"express"
"async",
"store",
"thread-local-storage",
"local-storage",
"async-storage",
"request-context",
"context",
"callback-context"
],
"authors": [
"Kabir Baidhya <kabirbaidhya@gmail.com>",
@@ -53,25 +60,23 @@
"devDependencies": {
"@types/chai": "^4.1.7",
"@types/chai-as-promised": "^7.1.0",
"@types/debug": "^4.1.3",
"@types/debug": "^4.1.4",
"@types/express": "^4.16.1",
"@types/mocha": "^5.2.7",
"@types/ramda": "^0.26.5",
"@types/uuid": "^3.4.4",
"@types/ramda": "^0.26.15",
"@types/uuid": "^3.4.5",
"chai": "^4.2.0",
"chai-as-promised": "^7.1.1",
"cross-env": "^5.2.0",
"husky": "^2.4.1",
"lint-staged": "^8.2.1",
"husky": "^3.0.0",
"lint-staged": "^9.2.0",
"mocha": "^6.1.4",
"npm-run-all": "^4.1.5",
"prettier": "^1.16.4",
"ts-node": "^8.0.3",
"prettier": "^1.18.2",
"ts-node": "^8.3.0",
"tslint": "^5.18.0",
"tslint-config-leapfrog": "^1.0.3",
"tslint-config-prettier": "^1.18.0",
"tslint-no-unused-expression-chai": "^0.1.4",
"typescript": "^3.4.1"
"typescript": "^3.5.3"
},
"publishConfig": {
"access": "public"
1,284 changes: 291 additions & 993 deletions yarn.lock

Large diffs are not rendered by default.

0 comments on commit 982115f

Please sign in to comment.