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