Skip to content
Open
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 @@ -63,6 +63,15 @@ console.log(path.map(function(e) { return e.data; }).join());
[API](doc/API.md)
------

Developing
-------
To get started developing in this package, install dependencies and use npm to run tests

```bash
npm install
npm test
```

License
-------
MIT.
Expand Down
5 changes: 3 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
"babel": "babel ./src/ --out-dir ./dist --source-maps",
"browserify": "browserify ./dist/jKstra.js -o ./build/jKstra.js --standalone jKstra",
"build": "npm run babel && npm run browserify",
"test": "mocha --compilers js:babel-register tests"
"test": "mocha --require babel-core/register tests"
},
"babel": {
"presets": [
Expand All @@ -38,7 +38,8 @@
"babel-register": "^6.7.2",
"browserify": "^13.0.0",
"chai": "^3.5.0",
"eslint": "^2.7.0"
"eslint": "^2.7.0",
"mocha": "^6.1.1"
},
"directories": {
"test": "test"
Expand Down