mirror of
https://github.com/dolthub/dolt.git
synced 2026-02-09 10:38:10 -06:00
For go build we need a dummy go file or go build fails For go test we now make sure we run npm install so that the test passes
13 lines
366 B
JSON
13 lines
366 B
JSON
{
|
|
"name": "noms-fs",
|
|
"license": "Apache-2.0",
|
|
"main": "dist/main.js",
|
|
"scripts": {
|
|
"preinstall": "pushd .. && npm install && popd && rm -rf node_modules && ln -sf ../node_modules/",
|
|
"prepublish": "npm run build",
|
|
"start": "babel -d dist -w src",
|
|
"build": "BABEL_ENV=production babel -d dist src",
|
|
"test": "eslint src/ && flow src/"
|
|
}
|
|
}
|