Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 9 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -507,3 +507,12 @@ hooks with the following command:
```bash
git config core.hooksPath .githooks
```

## Development

Install dependencies before running lint or tests:

```bash
npm install
npm run lint
```
3 changes: 2 additions & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,8 @@
"test": "mocha dist/tests/**/*.spec.js --reporter spec",
"test_watch": "tsc && mocha dist/tests/**/*.spec.js --reporter spec --watch",
"cover": "istanbul cover node_modules/mocha/bin/_mocha dist/tests/**/*.spec.js -- -R spec",
"cover:nyx": "nyc npm test"
"cover:nyx": "nyc npm test",
"lint": "tslint -c tslint.json -p tsconfig.json"
},
"repository": {
"type": "git",
Expand Down