containr
Version:
Docker Build scripts for npm
80 lines (79 loc) • 2.17 kB
JSON
{
"name": "containr",
"version": "1.2.9",
"description": "Docker Build scripts for npm",
"main": "lib/",
"keywords": [
"npm",
"build",
"tools",
"docker"
],
"scripts": {
"preversion": "npm run build",
"postversion": "git push -u origin --all && npm publish",
"build:clean": "rm -rf lib && mkdir lib",
"build:app": "babel -d ./app ./src -s",
"build:lib": "babel -d ./lib ./src -s",
"build": "npm run build:clean && npm run build:lib",
"docker:build": "docker-build && docker-push",
"dev": "npm run build:clean && babel ./src/ -d lib -s -w"
},
"bin": {
"containr": "./lib/containr-cli.js"
},
"files": [
"lib",
"share",
"README.md",
"LICENSE"
],
"repository": "github:nikcub/containr",
"bugs": {
"url": "https://github.com/nikcub/containr/issues"
},
"author": "Nik Cubrilovic <nikcub@gmail.com>",
"license": "MIT",
"homepage": "https://github.com/nikcub/containr",
"devDependencies": {
"@types/babel-core": "~6.7.14",
"@types/chalk": "~0.4.31",
"@types/commander": "~2.3.31",
"@types/ejs": "~2.3.33",
"@types/express": "^4.0.33",
"@types/mkdirp": "~0.3.29",
"@types/node": "^6.0.40",
"@types/shelljs": "~0.3.33",
"@types/source-map-support": "~0.2.28",
"@types/tmp": "0.0.32",
"babel-cli": "~6.18.0",
"babel-core": "~6.20.0",
"babel-eslint": "~7.1.1",
"babel-loader": "~6.2.9",
"babel-plugin-add-module-exports": "~0.2.1",
"babel-plugin-transform-runtime": "~6.15.0",
"babel-preset-node6": "~11.0.0",
"babel-register": "~6.18.0",
"eslint": "~3.11.1",
"eslint-config-airbnb": "~13.0.0",
"eslint-plugin-import": "~2.2.0",
"eslint-plugin-jsx-a11y": "~2.2.3",
"eslint-plugin-react": "~6.8.0",
"nodemon": "~1.11.0"
},
"dependencies": {
"babel-runtime": "~6.20.0",
"boxen": "~0.8.1",
"chalk": "~1.1.3",
"commander": "~2.9.0",
"ejs": "~2.5.5",
"figlet": "~1.2.0",
"mkdirp": "~0.5.1",
"rmdir": "~1.2.0",
"shelljs": "~0.7.5",
"source-map-support": "~0.4.6",
"time-stamp": "~1.0.1",
"tmp": "0.0.31",
"url": "^0.11.0"
}
}