forked from koistya/react-body
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
executable file
·65 lines (65 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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
{
"name": "react-body",
"version": "0.1.0",
"description": "A React component that conditionally adds CSS class name(s) to document.body",
"repository": "koistya/react-body",
"author": "Konstantin Tarkus <[email protected]> (https://www.codementor.io/koistya)",
"license": "MIT",
"keywords": [
"react",
"react.js",
"reactjs",
"component",
"react component",
"react-component",
"reactjs component",
"react.js component",
"css",
"css class",
"classname"
],
"main": "main.js",
"babel": {
"presets": [
"react",
"es2015",
"stage-0"
],
"plugins": [
"transform-runtime"
]
},
"eslintConfig": {
"parser": "babel-eslint",
"extends": "airbnb",
"env": {
"browser": true
},
"rules": {
"react/no-danger": 0
}
},
"dependencies": {
"babel-runtime": ">= 6 && < 7",
"prop-types": ">= 15 && < 16",
"react": ">= 15 && < 16"
},
"devDependencies": {
"babel-cli": "^6.18.0",
"babel-core": "^6.18.2",
"babel-eslint": "^7.1.0",
"babel-plugin-transform-runtime": "^6.15.0",
"babel-preset-es2015": "^6.18.0",
"babel-preset-react": "^6.16.0",
"babel-preset-stage-0": "^6.16.0",
"eslint": "^3.9.1",
"eslint-config-airbnb": "^12.0.0",
"eslint-plugin-import": "^2.0.1",
"eslint-plugin-jsx-a11y": "^2.2.3",
"eslint-plugin-react": "^6.5.0"
},
"scripts": {
"lint": "eslint main.jsx",
"build": "babel main.jsx -o main.js"
}
}