transpiled-published-static-application-demo
Version:
An example of publishing source on GitHub but a built application on npm.
36 lines (35 loc) • 1.12 kB
JSON
{
"name": "transpiled-published-static-application-demo",
"version": "0.1.4",
"description": "An example of publishing source on GitHub but a built application on npm.",
"scripts": {
"clean": "rm -rf dist",
"build": "mkdir -p dist && cp src/index.html dist/index.html && webpack",
"preversion": "npm run clean && npm run build",
"postversion": "git push && git push --tags && npm publish"
},
"files": [
"dist/"
],
"repository": {
"type": "git",
"url": "git+https://github.com/islemaster/transpiled-published-static-application-demo.git"
},
"keywords": [
"transpiled",
"published",
"static"
],
"author": "Brad Buchanan <islemaster@gmail.com> (http://bradleycbuchanan.com)",
"license": "ISC",
"bugs": {
"url": "https://github.com/islemaster/transpiled-published-static-application-demo/issues"
},
"homepage": "https://github.com/islemaster/transpiled-published-static-application-demo#readme",
"devDependencies": {
"babel-core": "^6.9.1",
"babel-loader": "^6.2.4",
"babel-preset-es2015": "^6.9.0",
"webpack": "^1.13.1"
}
}