forked from wojtekmaj/react-lifecycle-methods-diagram
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
96 lines (96 loc) · 2.16 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
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
{
"name": "custom-element-reactions-diagram",
"version": "1.0.0",
"description": "Interactive Custom Element reactions diagram.",
"scripts": {
"build": "parcel build src/index.html --public-url ./ --out-dir docs",
"clean": "rimraf dist",
"start": "parcel src/index.html",
"test": "yarn run test-eslint",
"test-eslint": "eslint src/ --ext .jsx,.js"
},
"author": {
"name": "Andreas Deuschlinger",
"email": "[email protected]"
},
"contributors": [
{
"name": "Wojciech Maj",
"email": "[email protected]"
},
{
"name": "Andrew Jefferson",
"email": "[email protected]"
},
{
"name": "Armin Schweitzer"
},
{
"name": "Burak Shen",
"email": "[email protected]"
},
{
"name": "Dmytro Nedolia"
},
{
"name": "Eddy Chang",
"email": "[email protected]"
},
{
"name": "Joris Tirado",
"email": "[email protected]"
},
{
"name": "Kenneth Luján Rosas",
"email": "[email protected]"
},
{
"name": "Lara de Oliveira"
},
{
"name": "Marek Suscak",
"email": "[email protected]"
},
{
"name": "Oerd Cukalla"
},
{
"name": "Sung Kim"
},
{
"name": "Tony Hudson"
},
{
"name": "Yin Hengli",
"email": "[email protected]"
},
{
"name": "YIPG",
"email": "[email protected]"
}
],
"license": "MIT",
"dependencies": {
"@babel/polyfill": "^7.0.0",
"get-user-locale": "^1.1.1",
"lodash.once": "^4.1.1",
"merge-class-names": "^1.1.1",
"prop-types": "^15.6.2",
"react": "^16.7.0",
"react-dom": "^16.7.0"
},
"devDependencies": {
"@babel/core": "^7.2.2",
"@babel/plugin-proposal-class-properties": "^7.2.3",
"@babel/plugin-proposal-export-default-from": "^7.2.0",
"babel-eslint": "^10.0.1",
"eslint": "^5.11.1",
"eslint-config-airbnb": "^17.1.0",
"eslint-plugin-import": "^2.14.0",
"eslint-plugin-jsx-a11y": "^6.1.2",
"eslint-plugin-react": "^7.12.0",
"less": "^3.9.0",
"parcel-bundler": "^1.11.0",
"rimraf": "^2.6.2"
}
}