package.json 875 字节
Newer Older
1 2
{
  "name": "activestorage",
J
Javan Makhmali 已提交
3
  "version": "0.1.1",
4 5
  "description": "Attach cloud and local files in Rails applications",
  "main": "app/assets/javascripts/activestorage.js",
J
Javan Makhmali 已提交
6 7 8 9 10 11 12 13 14 15 16
  "files": [
    "app/assets/javascripts/*.js"
  ],
  "homepage": "https://github.com/rails/activestorage",
  "repository": {
    "type": "git",
    "url": "git+https://github.com/rails/activestorage.git"
  },
  "bugs": {
    "url": "https://github.com/rails/activestorage/issues"
  },
17 18 19 20 21 22
  "author": "Javan Makhmali <javan@javan.us>",
  "license": "MIT",
  "devDependencies": {
    "babel-core": "^6.25.0",
    "babel-loader": "^7.1.1",
    "babel-preset-env": "^1.6.0",
J
Javan Makhmali 已提交
23 24
    "eslint": "^4.3.0",
    "eslint-plugin-import": "^2.7.0",
25 26 27 28
    "spark-md5": "^3.0.0",
    "webpack": "^3.4.0"
  },
  "scripts": {
J
Javan Makhmali 已提交
29 30 31
    "prebuild": "yarn lint",
    "build": "webpack -p",
    "lint": "eslint app/javascript"
32 33
  }
}