scratch-l10n/package.json
Ray Schamp 1e976a53fd
Merge pull request #17 from mzgoddard/babel-preset-env
Replace babel-preset-es2015 with babel-preset-env
2018-05-11 11:09:50 -04:00

52 lines
1.6 KiB
JSON

{
"name": "scratch-l10n",
"version": "2.0.0",
"description": "Localization for the Scratch 3.0 components",
"main": "./dist/l10n.js",
"bin": {
"build-i18n-src": "./scripts/build-i18n-src.js"
},
"scripts": {
"build:data": "babel-node scripts/build-data",
"build": "npm run clean && npm run build:data && webpack --progress --colors --bail",
"clean": "rimraf ./dist ./locales && mkdirp dist locales",
"lint:js": "eslint . --ext .js",
"lint:json": "jshint -e .json www gui paint pen",
"lint": "npm run lint:js && npm run lint:json",
"test": "npm run lint && npm run build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/LLK/scratch-l10n.git"
},
"author": "Massachusetts Institute of Technology",
"license": "BSD-3-Clause",
"bugs": {
"url": "https://github.com/LLK/scratch-l10n/issues"
},
"homepage": "https://github.com/LLK/scratch-l10n#readme",
"dependencies": {
"babel-cli": "^6.26.0",
"babel-plugin-intl": "^0.1.1",
"babel-plugin-react-intl": "^2.3.1"
},
"devDependencies": {
"babel-core": "^6.26.0",
"babel-eslint": "^7.2.3",
"babel-loader": "^7.1.4",
"babel-plugin-transform-object-rest-spread": "^6.26.0",
"babel-preset-env": "^1.6.1",
"eslint": "^4.6.1",
"eslint-config-scratch": "^4.0.0",
"eslint-plugin-import": "^2.7.0",
"jshint": "2.9.5",
"json": "^9.0.6",
"jsonlint": "1.6.3",
"lodash.defaultsdeep": "4.6.0",
"mkdirp": "^0.5.1",
"react-intl": "2.4.0",
"rimraf": "^2.6.2",
"webpack": "^4.6.0",
"webpack-cli": "^2.0.15"
}
}