-
Notifications
You must be signed in to change notification settings - Fork 19
/
Copy pathpackage.json
64 lines (64 loc) · 1.33 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
{
"name": "react-native-sass-transformer",
"version": "3.0.0",
"description": "Sass transformer for react-native",
"main": "index.js",
"repository": "https://github.com/kristerkari/react-native-sass-transformer",
"scripts": {
"release": "np",
"precommit": "lint-staged",
"test": "eslint ."
},
"author": "Krister Kari",
"license": "MIT",
"files": [
"index.js",
"README.md"
],
"dependencies": {
"app-root-path": "^3.1.0",
"css-to-react-native-transform": "^2.0.0"
},
"peerDependencies": {
"react-native": ">=0.59.0",
"sass": "^1.43.2"
},
"devDependencies": {
"eslint": "^7.31.0",
"eslint-config-standard": "^16.0.3",
"eslint-plugin-import": "^2.23.4",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^5.1.0",
"husky": "^9.0.11",
"lint-staged": "^15.2.2",
"np": "^10.0.5",
"prettier": "^3.2.5"
},
"lint-staged": {
"*.js": [
"prettier --write",
"git add"
]
},
"eslintConfig": {
"extends": "standard",
"rules": {
"space-before-function-paren": 0,
"semi": [
2,
"always"
],
"quotes": [
2,
"double"
],
"no-else-return": 2,
"no-var": 0
}
},
"prettier": {
"semi": true,
"singleQuote": false,
"trailingComma": "none"
}
}