Skip to content

Commit

Permalink
Merge pull request #178 from open-rpc/fix/linting
Browse files Browse the repository at this point in the history
Fix/linting
  • Loading branch information
BelfordZ authored May 6, 2019
2 parents ab39f5b + 6f7106f commit 070846b
Show file tree
Hide file tree
Showing 4 changed files with 127 additions and 52 deletions.
149 changes: 108 additions & 41 deletions package-lock.json

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

15 changes: 9 additions & 6 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,9 @@
],
"scripts": {
"start": "./bin/cli.js",
"test": "jest --coverage",
"test": "npm run test:lint && npm run test:unit",
"test:unit": "jest --coverage",
"test:lint": "tslint -c tslint.json 'src/**/*.ts' --fix",
"build": "tsc && cp -R templates build/. && chmod +x build/src/cli.js",
"watch:build": "tsc --watch",
"watch:test": "jest --watch"
Expand All @@ -31,13 +33,14 @@
"lodash": "^4.17.11"
},
"devDependencies": {
"@open-rpc/examples": "^1.3.0",
"@open-rpc/meta-schema": "^1.3.1",
"@types/fs-extra": "^5.0.5",
"@types/lodash": "^4.14.123",
"@types/jest": "^24.0.11",
"@open-rpc/meta-schema": "^1.3.1",
"@open-rpc/examples": "^1.3.0",
"@types/lodash": "^4.14.123",
"jest": "^24.5.0",
"typescript": "^3.3.3333",
"ts-jest": "^24.0.0"
"ts-jest": "^24.0.0",
"tslint": "^5.16.0",
"typescript": "^3.3.3333"
}
}
Loading

0 comments on commit 070846b

Please sign in to comment.