Skip to content

Commit

Permalink
changed command to test run
Browse files Browse the repository at this point in the history
  • Loading branch information
roman.vasilev committed Jul 1, 2018
1 parent 66eeab5 commit bc01ce1
Showing 1 changed file with 14 additions and 15 deletions.
29 changes: 14 additions & 15 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -6,15 +6,14 @@
"main": "dist/index.js",
"typings": "src/index.ts",
"scripts": {
"t": "npm run mocha -- src/*.spec.ts",
"test": "npm run eslint && npm run tscheck && npm run t",
"test": "npm run eslint && npm run tscheck && npm run test:r",
"test:r": "npm run mocha -- src/*.spec.ts",
"mocha": "node -r ts-node/register/transpile-only node_modules/mocha/bin/_mocha",
"test:w": "npm run mocha -- --watch-extensions ts --watch src/**/*.spec.ts",
"test:d": "node --inspect-brk -r ts-node/register/transpile-only node_modules/mocha/bin/_mocha --no-timeouts src/**/*.spec.ts",
"tscheck": "echo tscheck... && tsc --noEmit",
"tscheck:w": "npm run tscheck -- --watch",
"tsclint": "tsc --noEmit --pretty false --strict --forceConsistentCasingInFileNames --noImplicitReturns --noImplicitThis --noUnusedLocals --noUnusedParameters",
"tsclint": "tsc --noEmit --pretty --strict --forceConsistentCasingInFileNames --noImplicitReturns --noImplicitThis --noUnusedLocals --noUnusedParameters",
"tsclint:w": "npm run tsclint -- --watch",
"eslint": "eslint src --ext ts",
"eslint:fix": "eslint src --ext \"ts\" --fix",
Expand All @@ -28,32 +27,32 @@
"commit": "git-cz"
},
"dependencies": {
"tslib": "^1.9.2"
"tslib": "^1.9.3"
},
"devDependencies": {
"@semantic-release/changelog": "^2.0.2",
"@semantic-release/git": "^5.0.0",
"@semantic-release/npm": "^3.3.1",
"@types/mocha": "^5.2.1",
"@types/node": "^10.3.2",
"@semantic-release/changelog": "^2.1.1",
"@semantic-release/git": "^6.0.1",
"@semantic-release/npm": "^3.3.4",
"@types/mocha": "^5.2.3",
"@types/node": "^10.5.1",
"chokidar-cli": "^1.2.0",
"conventional-changelog-eslint": "^3.0.0",
"cz-adapter-eslint": "^0.1.2",
"eslint": "^4.19.1",
"eslint-plugin-import": "^2.12.0",
"eslint": "^5.0.1",
"eslint-plugin-import": "^2.13.0",
"eslint-plugin-tslint": "^2.1.0",
"eslint-plugin-typescript": "^0.12.0",
"eslint-plugin-unicorn": "^4.0.3",
"mocha": "^5.2.0",
"npm-run-all": "^4.1.3",
"rimraf": "^2.6.2",
"semantic-release": "^15.5.1",
"ts-node": "^6.1.0",
"semantic-release": "^15.6.0",
"ts-node": "^7.0.0",
"tslint": "^5.10.0",
"tslint-clean-code": "^0.2.7",
"tslint-microsoft-contrib": "^5.0.3",
"typescript": "^2.9.1",
"typescript-eslint-parser": "^16.0.0"
"typescript": "^2.9.2",
"typescript-eslint-parser": "^16.0.1"
},
"engines": {
"node": ">=6",
Expand Down

0 comments on commit bc01ce1

Please sign in to comment.