Skip to content

Commit

Permalink
adding source-map-support for ts mapping in stack trace; enabling tsl…
Browse files Browse the repository at this point in the history
…int rules; added linting to travis; removing unnecessary self variables (#1047)
  • Loading branch information
andygreenegrass authored and jsdevel committed Feb 21, 2019
1 parent adb0739 commit 9cb3bf0
Show file tree
Hide file tree
Showing 17 changed files with 886 additions and 918 deletions.
10 changes: 5 additions & 5 deletions .travis.yml
Expand Up @@ -3,10 +3,10 @@ language: node_js
notifications:
email: false
node_js:
- 9
- 8
- 7
- 6
- "9"
- "8"
- "7"
- "6"
- "lts/*"
env:
- CXX=g++-4.8
Expand All @@ -19,6 +19,6 @@ addons:
before_install:
- npm -g install npm@latest
script:
- npm run build
- npm run lint
- npm run cover
- npm run coveralls
14 changes: 13 additions & 1 deletion package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

11 changes: 8 additions & 3 deletions package.json
Expand Up @@ -26,17 +26,21 @@
"main": "./index.js",
"types": "./lib/soap.d.ts",
"directories": {
"lib": "./lib"
"lib": "./lib",
"test": "./test",
"example": "./src/examples"
},
"scripts": {
"prepare": "npm run build",
"build": "tsc -p .",
"clean": "rm -rf lib",
"watch": "tsc -w -p .",
"lint": "tslint -p tsconfig.json",
"toc": "./node_modules/.bin/doctoc Readme.md --github --maxlevel 3",
"cover": "nyc --reporter=lcov --reporter=html --reporter=text mocha --exit test/*-test.js test/security/*.js",
"cover": "nyc --reporter=lcov --reporter=html --reporter=text mocha --timeout 15000 --exit test/*-test.js test/security/*.js",
"coveralls": "cat ./coverage/lcov.info | ./node_modules/coveralls/bin/coveralls.js -v",
"docs": "typedoc --out docs",
"test": "mocha --timeout 15000 --bail --exit test/*-test.js test/security/*.js"
"test": "mocha -r source-map-support/register --timeout 15000 --bail --exit test/*-test.js test/security/*.js"
},
"keywords": [
"soap"
Expand Down Expand Up @@ -67,6 +71,7 @@
"semver": "~5.0.3",
"should": "~3.3.0",
"sinon": "^1.17.5",
"source-map-support": "^0.5.10",
"timekeeper": "~0.0.4",
"tslint": "^5.12.1",
"typedoc": "^0.14.2",
Expand Down

0 comments on commit 9cb3bf0

Please sign in to comment.