mithril-vndb/package.json
Pat Cavit 8dee570602 Default to always using "beta" tag for rewrite
See https://docs.npmjs.com/files/package.json#publishconfig and
https://docs.npmjs.com/misc/config#tag

This way when `rewrite` starts being published users will need to
install it as `npm install mithril@beta` to get the rewrite. When people
run `npm install mithril` it'll use the default `latest` tag and that
will continue to point to the `0.2.x` branch until the rewrite is fully
ready.
2016-05-31 11:12:57 -07:00

21 lines
453 B
JSON

{
"name": "mithril",
"version": "1.0.0",
"description": "A framework for building brilliant applications",
"author": "Leo Horie",
"license": "MIT",
"main": "index.js",
"scripts": {
"build": "node bundler/bundler",
"lint": "eslint .",
"test": "node ospec/bin/ospec",
"cover": "istanbul cover --print both ospec/bin/ospec"
},
"devDependencies": {
"eslint": "^2.10.2",
"istanbul": "^0.4.3"
},
"publishConfig": {
"tag": "beta"
}
}