Skip to content
Closed
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
1 change: 1 addition & 0 deletions js/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,7 @@ From this directory, run:

``` bash
$ npm install # pull dependencies
$ npm run lint -- <filename> # run tslint
$ npm run build # build typescript (run tsc and webpack)
$ npm run test # run the unit tests (node.js only)
```
Expand Down
4 changes: 3 additions & 1 deletion js/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,8 @@
"scripts": {
"build": "./flatbuffers.sh && tsc && tsc -m es6 --outDir lib-esm && webpack",
"clean": "rm -rf lib lib-esm _bundles",
"test": "./node_modules/mocha/bin/mocha ./spec/arrow.js"
"test": "./node_modules/mocha/bin/mocha ./spec/arrow.js",
"lint": "./node_modules/tslint/bin/tslint"
},
"author": "",
"repository": "https://github.com/apache/arrow/",
Expand All @@ -15,6 +16,7 @@
"awesome-typescript-loader": "^3.1.3",
"chai": "^3.5.0",
"mocha": "^3.3.0",
"tslint": "^5.3.2",
"typescript": "^2.3.2",
"uglifyjs-webpack-plugin": "^0.4.3",
"webpack": "^2.3.3"
Expand Down
Loading