mirror of
https://github.com/dolthub/dolt.git
synced 2026-02-07 18:49:08 -06:00
This prevents us from doing npm publish on them. https://docs.npmjs.com/files/package.json#private
14 lines
350 B
JSON
14 lines
350 B
JSON
{
|
|
"name": "noms-fs",
|
|
"private": true,
|
|
"license": "Apache-2.0",
|
|
"main": "dist/main.js",
|
|
"scripts": {
|
|
"preinstall": "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/"
|
|
}
|
|
}
|