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
19 lines
529 B
JSON
19 lines
529 B
JSON
{
|
|
"name": "@attic/counter",
|
|
"description": "noms example javascript client with a counter",
|
|
"license": "Apache-2.0",
|
|
"main": "dist/main.js",
|
|
"version": "1.0.1",
|
|
"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 ../node_modules/.bin/babel -d dist src",
|
|
"test": "eslint src/ && flow src/"
|
|
},
|
|
"keywords": [
|
|
"noms",
|
|
"example"
|
|
]
|
|
}
|