You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 

56 lines
1.6 KiB

{
"name": "neutrino",
"version": "4.0.0",
"description": "Create and build JS applications with managed configurations",
"main": "bin/neutrino",
"bin": {
"neutrino": "./bin/neutrino"
},
"commands": [
{
"command": "start",
"description": "Build the project in development mode",
"options": {
"-p, --preset [nameOrFile]": "Specify a configuration preset for running the development server"
}
},
{
"command": "build",
"description": "Compile the source directory to a built project",
"environment": "production",
"options": {
"-p, --preset [nameOrFile]": "Specify a configuration preset for building the source"
}
},
{
"command": "test [files...]",
"description": "Run a set of test suites against the configured test directory or specific files",
"environment": "test",
"options": {
"-p, --preset [nameOrFile]": "Specify a configuration preset for running tests",
"--watch": "Watch source directory for changes and re-run tests"
}
}
],
"keywords": [
"webpack",
"preset",
"build"
],
"author": "Eli Perelman <eli@eliperelman.com>",
"license": "MPL-2.0",
"repository": "mozilla-neutrino/neutrino-dev",
"dependencies": {
"babel-register": "6.22.0",
"change-case": "^3.0.1",
"karma": "^1.4.1",
"mocha": "^3.2.0",
"resolve": "^1.2.0",
"vorpal": "1.4.1",
"webpack": "^2.2.1",
"webpack-dev-server": "^2.3.0",
"webpack-hot-middleware": "^2.16.1",
"webpack-merge": "^2.6.1",
"yeoman-environment": "^1.6.6"
}
}