mirror of
https://github.com/rails/rails.git
synced 2022-11-09 12:12:34 -05:00
88c4ea1d2d
There was a warning when running `npm install` in Action View: coffee-script@1.11.1: CoffeeScript on NPM has moved to "coffeescript" (no hyphen) We are not requiring `coffee-script` explicitly, but `coffeelint` does. The latest version, 2.1.0, already fix the dependency package name, so we should upgrade to it to suppress the warning.
36 lines
929 B
JSON
36 lines
929 B
JSON
{
|
|
"name": "rails-ujs",
|
|
"version": "6.0.0-alpha",
|
|
"description": "Ruby on Rails unobtrusive scripting adapter",
|
|
"main": "lib/assets/compiled/rails-ujs.js",
|
|
"files": [
|
|
"lib/assets/compiled/*.js"
|
|
],
|
|
"directories": {
|
|
"test": "test"
|
|
},
|
|
"scripts": {
|
|
"build": "bundle exec blade build",
|
|
"test": "echo \"See the README: https://github.com/rails/rails/blob/master/actionview/app/assets/javascripts#how-to-run-tests\" && exit 1",
|
|
"lint": "coffeelint app/assets/javascripts && eslint test/ujs/public/test"
|
|
},
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "rails/rails"
|
|
},
|
|
"contributors": [
|
|
"Stephen St. Martin",
|
|
"Steve Schwartz",
|
|
"Dangyi Liu",
|
|
"All contributors"
|
|
],
|
|
"license": "MIT",
|
|
"bugs": {
|
|
"url": "https://github.com/rails/rails/issues"
|
|
},
|
|
"homepage": "http://rubyonrails.org/",
|
|
"devDependencies": {
|
|
"coffeelint": "^2.1.0",
|
|
"eslint": "^2.13.1"
|
|
}
|
|
}
|