/******************************************************************************* * Copyright (c) 2013 Stephane Begaudeau (Obeo). * 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: * Stephane Begaudeau (Obeo) - initial API and implementation *******************************************************************************/ package org.obeonetwork.angularjs.eclipse.tools.ide.core.utils; /** * @author <a href="mailto:stephane.begaudeau@obeo.fr">Stephane Begaudeau</a> */ public interface IAngularJSConstants { /** * The identifier of the nature. */ String NATURE_ID = "org.obeonetwork.angularjs.eclipse.tools.nature"; //$NON-NLS-1$ /** * The identifier of the builder. */ String BUILDER_ID = "org.obeonetwork.angularjs.eclipse.tools.builder"; //$NON-NLS-1$ /** * The filename of the package.json file. */ String PACKAGE_JSON_FILENAME = "package.json"; //$NON-NLS-1$ }