UNPKG

1.85 kBJSONView Raw
1{
2 "name": "babel-preset-airbnb",
3 "version": "5.0.0",
4 "description": "A babel preset for transforming your JavaScript for Airbnb",
5 "main": "index.js",
6 "author": "Josh Perez <josh.perez@airbnb.com>",
7 "repository": {
8 "type": "git",
9 "url": "git@github.com:airbnb/babel-preset-airbnb.git"
10 },
11 "keywords": [
12 "babel",
13 "es6",
14 "es2015",
15 "javascript"
16 ],
17 "license": "MIT",
18 "dependencies": {
19 "@babel/helper-plugin-utils": "^7.8.3",
20 "@babel/plugin-proposal-nullish-coalescing-operator": "^7.8.3",
21 "@babel/plugin-proposal-numeric-separator": "^7.8.3",
22 "@babel/plugin-proposal-object-rest-spread": "^7.9.0",
23 "@babel/plugin-proposal-optional-catch-binding": "^7.8.3",
24 "@babel/plugin-proposal-optional-chaining": "^7.9.0",
25 "@babel/plugin-transform-classes": "^7.9.2",
26 "@babel/plugin-transform-exponentiation-operator": "^7.8.3",
27 "@babel/plugin-transform-member-expression-literals": "^7.8.3",
28 "@babel/plugin-transform-property-literals": "^7.8.3",
29 "@babel/plugin-transform-property-mutators": "^7.8.3",
30 "@babel/plugin-transform-runtime": "^7.9.0",
31 "@babel/plugin-transform-template-literals": "^7.8.3",
32 "@babel/preset-env": "^7.9.0",
33 "@babel/preset-react": "^7.9.4",
34 "babel-plugin-transform-react-remove-prop-types": "^0.4.24"
35 },
36 "peerDependencies": {
37 "@babel/core": "^7.0.0",
38 "@babel/runtime": "^7.0.0"
39 },
40 "devDependencies": {
41 "@babel/core": "^7.0.0",
42 "@babel/runtime": "^7.0.0",
43 "eslint": "^5.16.0",
44 "eslint-config-airbnb-base": "^13.1.0",
45 "eslint-plugin-import": "^2.17.3",
46 "safe-publish-latest": "^1.1.2"
47 },
48 "scripts": {
49 "prepublish": "safe-publish-latest",
50 "pretest": "npm run lint",
51 "test": "npm run tests-only",
52 "tests-only": "node . && echo 'parsed successfully'",
53 "lint": "eslint ."
54 }
55}