/******************************************************************************* * Copyright (c) 2014 IBM Corporation and others * All rights reserved. This program and the accompanying materials * are made available under the terms of the Eclipse Public License v1.0 * which accompanies this distribution, and is available at * http://www.eclipse.org/legal/epl-v10.html * * Contributors: * IBM Corporation - initial API and implementation *******************************************************************************/ package org.eclipse.orion.server.cf.nodejs; public final class NodeJSConstants { public static final String PACKAGE_JSON = "package.json"; //$NON-NLS-1$ public static final String SCRIPTS = "scripts"; //$NON-NLS-1$ public static final String START = "start"; //$NON-NLS-1$ public static final String SERVER_JS = "server.js"; //$NON-NLS-1$ public static final String APP_JS = "app.js"; //$NON-NLS-1$ public static final String NODE_SERVER_JS = "node server.js"; //$NON-NLS-1$ public static final String NODE_APP_JS = "node app.js"; //$NON-NLS-1$ public static final String DEPENDENCIES = "dependencies"; //$NON-NLS-1$ }