-
Notifications
You must be signed in to change notification settings - Fork 41
/
package.json
79 lines (79 loc) · 1.86 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
{
"name": "@shoutem/animation",
"version": "0.17.0",
"description": "Shoutem Animation Library",
"main": "index.js",
"scripts": {
"lint": "eslint .",
"lint-fix": "eslint . --fix"
},
"repository": {
"type": "git",
"url": "git+ssh://git@github.com:shoutem/animation.git"
},
"dependencies": {
"auto-bind": "4.0.0",
"hoist-non-react-statics": "3.3.2",
"lodash": "4.17.21"
},
"devDependencies": {
"@shoutem/eslint-config-react": "~1.0.6",
"babel-eslint": "10.1.0",
"eslint": "6.8.0",
"eslint-plugin-import": "2.25.4",
"eslint-plugin-jsx-a11y": "6.5.1",
"eslint-plugin-prettier": "3.1.3",
"eslint-plugin-react": "7.28.0",
"eslint-plugin-react-hooks": "4.2.0",
"eslint-plugin-react-native": "3.11.0",
"eslint-plugin-simple-import-sort": "7.0.0",
"prettier": "1.19.1"
},
"peerDependencies": {
"react": ">=16.8.6",
"react-native": ">=0.60.6",
"prop-types": ">=15.7.2"
},
"keywords": [
"React",
"Native",
"Animation"
],
"homepage": "http://http://shoutem.github.io/docs/ui-toolkit/animation/introduction",
"bugs": {
"url": "https://github.com/shoutem/animation/issues"
},
"license": "BSD-3-Clause",
"maintainers": [
{
"email": "lucija.tatarevic@shoutem.com",
"name": "ltatarev"
},
{
"email": "slavko@shoutem.com",
"name": "sstimac"
},
{
"email": "tomislav.arambasic@shoutem.com",
"name": "tomislav-arambasic"
},
{
"email": "vlad@definitely-not-vlad.com",
"name": "Definitely-Not-Vlad"
}
],
"eslintConfig": {
"extends": "@shoutem/react",
"parser": "babel-eslint",
"parserOptions": {
"ecmaVersion": 6,
"sourceType": "module"
}
},
"prettier": {
"bracketSpacing": true,
"jsxBracketSameLine": false,
"singleQuote": true,
"trailingComma": "all"
}
}