-
Notifications
You must be signed in to change notification settings - Fork 116
/
Copy pathpackage.json
69 lines (69 loc) · 1.47 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
{
"name": "react-native-svg-transformer",
"version": "1.5.0",
"description": "SVG transformer for react-native",
"main": "index.js",
"repository": "https://github.com/kristerkari/react-native-svg-transformer",
"scripts": {
"release": "np",
"precommit": "lint-staged",
"test": "eslint ."
},
"author": "Krister Kari",
"license": "MIT",
"files": [
"expo/index.js",
"react-native/index.js",
"index.js",
"CHANGELOG.md",
"README.md"
],
"dependencies": {
"@svgr/core": "^8.1.0",
"@svgr/plugin-jsx": "^8.1.0",
"@svgr/plugin-svgo": "^8.1.0",
"path-dirname": "^1.0.2"
},
"peerDependencies": {
"react-native": ">=0.59.0",
"react-native-svg": ">=12.0.0"
},
"devDependencies": {
"eslint": "^8.19.0",
"eslint-config-standard": "^15.0.1",
"eslint-plugin-import": "^2.17.0",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^7.0.0",
"eslint-plugin-standard": "^5.0.0",
"husky": "^9.0.11",
"lint-staged": "^15.0.2",
"np": "^10.0.0",
"prettier": "^3.0.0"
},
"lint-staged": {
"*.js": [
"prettier --write",
"git add"
]
},
"eslintConfig": {
"extends": "standard",
"rules": {
"semi": [
2,
"always"
],
"quotes": [
2,
"double"
],
"no-else-return": 2,
"space-before-function-paren": 0
}
},
"prettier": {
"semi": true,
"singleQuote": false,
"trailingComma": "none"
}
}