-
Notifications
You must be signed in to change notification settings - Fork 20
/
Copy pathpackage.json
81 lines (81 loc) · 1.71 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
{
"name": "css-to-react-native-transform",
"description": "Convert CSS text to a React Native stylesheet object",
"version": "2.1.0",
"main": "dist/index.js",
"author": "Krister Kari",
"license": "MIT",
"scripts": {
"prettify": "prettier --write '**/*.@(js|json|md)'",
"precommit": "lint-staged",
"build": "babel src --ignore *.spec.js --out-dir dist",
"test": "jest --coverage",
"prepublish": "npm run build",
"release": "np"
},
"devDependencies": {
"@babel/cli": "^7.14.5",
"@babel/core": "^7.14.6",
"@babel/preset-env": "^7.14.7",
"babel-jest": "^29.1.2",
"coveralls": "^3.0.6",
"husky": "^9.0.11",
"jest": "^29.2.0",
"lint-staged": "^15.2.2",
"np": "^10.0.6",
"prettier": "^3.0.0"
},
"jest": {
"transform": {
"^.+\\.jsx?$": "babel-jest"
},
"coverageDirectory": "./.coverage/",
"coverageReporters": [
"lcov",
"text"
],
"coverageThreshold": {
"global": {
"branches": 75,
"functions": 75,
"lines": 75,
"statements": 75
}
},
"testPathIgnorePatterns": [
"<rootDir>/dist",
"<rootDir>/node_modules"
]
},
"lint-staged": {
"*.{js,json,md}": [
"prettier --write",
"git add"
]
},
"prettier": {
"trailingComma": "all"
},
"dependencies": {
"css": "^3.0.0",
"css-mediaquery": "^0.1.2",
"css-to-react-native": "^3.2.0"
},
"repository": {
"type": "git",
"url": "git+https://github.com/kristerkari/css-to-react-native-transform.git"
},
"keywords": [
"React",
"ReactNative",
"styles",
"CSS"
],
"files": [
"dist",
"src",
"index.d.ts",
"CHANGELOG.md",
"README.md"
]
}