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.
60 lines
1.7 KiB
60 lines
1.7 KiB
{
|
|
"name": "neutrino",
|
|
"version": "2.2.0",
|
|
"description": "Create and build JS applications with managed configurations",
|
|
"main": "bin/neutrino",
|
|
"bin": {
|
|
"neutrino": "./bin/neutrino"
|
|
},
|
|
"commands": [
|
|
{
|
|
"command": "init <packageName>",
|
|
"description": "Scaffold and initialize a project based on a scaffolding package"
|
|
},
|
|
{
|
|
"command": "start",
|
|
"description": "Start a development server",
|
|
"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 specifid 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",
|
|
"dependencies": {
|
|
"babel-register": "6.14.0",
|
|
"change-case": "3.0.0",
|
|
"karma": "1.3.0",
|
|
"mocha": "3.0.2",
|
|
"npm": "3.10.6",
|
|
"resolve": "1.1.7",
|
|
"vorpal": "1.4.1",
|
|
"webpack": "1.13.2",
|
|
"webpack-dev-server": "1.16.2",
|
|
"webpack-hot-middleware": "2.12.2",
|
|
"webpack-merge": "0.14.1",
|
|
"yeoman-environment": "1.6.3"
|
|
}
|
|
}
|
|
|