forked from airbnb/babel-preset-airbnb
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
45 lines (45 loc) · 1.48 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
{
"name": "babel-preset-joinnus",
"version": "2.6.0",
"description": "A babel preset for transforming your JavaScript for Joinnus",
"main": "index.js",
"author": "Josh Perez <[email protected]>",
"repository": {
"type": "git",
"url": "[email protected]:joinnusteam/babel-preset-joinnus.git"
},
"keywords": [
"babel",
"es6",
"es2015",
"javascript"
],
"license": "Apache-2.0",
"dependencies": {
"@babel/preset-react": "^7.0.0",
"babel-plugin-syntax-trailing-function-commas": "^6.22.0",
"babel-plugin-transform-es2015-modules-commonjs": "^6.26.2",
"babel-plugin-transform-es2015-template-literals": "^6.22.0",
"babel-plugin-transform-es3-member-expression-literals": "^6.22.0",
"babel-plugin-transform-es3-property-literals": "^6.22.0",
"babel-plugin-transform-es5-property-mutators": "^6.24.1",
"babel-plugin-transform-exponentiation-operator": "^6.24.1",
"babel-plugin-transform-jscript": "^6.22.0",
"babel-plugin-transform-object-rest-spread": "^6.26.0",
"babel-plugin-transform-react-remove-prop-types": "^0.4.15",
"babel-plugin-transform-strict-mode": "^6.24.1",
"babel-preset-env": "^1.7.0",
"object.assign": "^4.1.0"
},
"devDependencies": {
"eslint": "^5.5.0",
"eslint-config-airbnb-base": "^13.1.0",
"eslint-plugin-import": "^2.14.0"
},
"scripts": {
"pretest": "npm run lint",
"test": "npm run tests-only",
"tests-only": "echo 'no tests';",
"lint": "eslint ."
}
}