package.json
{
"name": "1_proj",
"version": "1.0.19",
"description": "first project",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"build": "NODE_ENV=production babel src --out-dir dist --source-maps inline",
"prepublishOnly": "npm run build"
},
"bin": {
"brain-games": "dist/bin/brain-games.js",
"hello": "dist/index.js",
"brain-even": "dist/bin/brain-even.js",
"brain-calc": "dist/bin/brain-calc.js",
"brain-gcd": "dist/bin/brain-gcd.js"
},
"author": "me",
"license": "ISC",
"files": [
"dist"
],
"devDependencies": {
"@babel/cli": "^7.2.3",
"@babel/core": "^7.2.2",
"@babel/node": "^7.2.2",
"@babel/preset-env": "^7.3.1",
"eslint": "^5.13.0",
"babel-eslint": "^10.0.1",
"eslint-config-airbnb-base": "^13.1.0",
"eslint-plugin-babel": "^5.3.0",
"eslint-plugin-import": "^2.16.0",
"eslint-scope": "^4.0.0"
},
"dependencies": {
"hexlet-pairs": "^1.0.8",
"readline-sync": "1.4.9"
},
"keywords": [
"bar",
"baz",
"foo"
]
}