mirror of
https://github.com/dolthub/dolt.git
synced 2026-05-24 11:39:18 -05:00
bbea22b395
This prevents us from doing npm publish on them. https://docs.npmjs.com/files/package.json#private
14 lines
357 B
JSON
14 lines
357 B
JSON
{
|
|
"name": "noms-url-fetch",
|
|
"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/"
|
|
}
|
|
}
|