/* * Copyright (c) 2013, the Dart project authors. * * Licensed under the Eclipse Public License v1.0 (the "License"); you may not use this file except * in compliance with the License. You may obtain a copy of the License at * * http://www.eclipse.org/legal/epl-v10.html * * Unless required by applicable law or agreed to in writing, software distributed under the License * is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express * or implied. See the License for the specific language governing permissions and limitations under * the License. */ package com.google.dart.tools.core.pub; /** * Constants for use when dealing with Pubspecs. * * @coverage dart.tools.core.pub */ public interface PubspecConstants { public static final String NAME = "name"; public static final String DESCRIPTION = "description"; public static final String VERSION = "version"; public static final String AUTHORS = "authors"; public static final String AUTHOR = "author"; public static final String ENVIRONMENT = "environment"; public static final String HOMEPAGE = "homepage"; public static final String DEPENDENCIES = "dependencies"; public static final String DEV_DEPENDENCIES = "dev_dependencies"; public static final String DOCUMENTATION = "documentation"; public static final String SDK_VERSION = "sdk"; public static final String TRANSFORMERS = "transformers"; public static final String PATH = "path"; public static final String GIT = "git"; public static final String URL = "url"; public static final String REF = "ref"; public static final String ANY = "any"; public static final String PACKAGES = "packages"; public static final String LOCATION = "location"; public static final String HOSTED = "hosted"; }