forked from AlexGilleran/jsx-control-statements
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
54 lines (54 loc) · 1.29 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
{
"name": "babel-plugin-jsx-control-statements",
"version": "4.1.2",
"description": "Neater control statements (if/for) for jsx",
"author": {
"name": "Alex Gilleran",
"email": "[email protected]"
},
"main": "src/index.js",
"repository": {
"type": "git",
"url": "https://github.com/AlexGilleran/jsx-control-statements"
},
"types": "index.d.ts",
"bugs": {
"url": "https://github.com/AlexGilleran/jsx-control-statements/issues"
},
"keywords": [
"react",
"jsx",
"if",
"else",
"for",
"each",
"loop",
"babel",
"react-component"
],
"license": "MIT",
"scripts": {
"lint": "eslint src spec",
"test": "mocha spec/tests.js",
"cover": "istanbul cover -x \"**/spec/**\" node_modules/mocha/bin/_mocha spec/*.js"
},
"dependencies": {
"@babel/core": "^7.1.2"
},
"devDependencies": {
"@babel/preset-react": "^7.0.0",
"@babel/register": "^7.0.0",
"babel-eslint": "^10.0.1",
"chai": "^4.2.0",
"chai-spies": "^1.0.0",
"coveralls": "^3.0.9",
"eslint": "^6.8.0",
"eslint-config-airbnb": "^18.1.0",
"eslint-plugin-jsx-control-statements": "^2.1.0",
"eslint-plugin-react": "^7.19.0",
"istanbul": "^0.4.1",
"mocha": "^7.1.0",
"react": "^16.13.0",
"react-dom": "^16.13.0"
}
}