-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
82 lines (82 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
{
"name": "@native-html/css-processor",
"version": "1.11.0",
"description": "An inline CSS processor to translate CSS properties to React Native styles.",
"main": "lib/commonjs/index.js",
"types": "lib/typescript/index.d.ts",
"react-native": "src/",
"files": [
"lib",
"src"
],
"homepage": "https://github.com/native-html/core/tree/main/packages/css-processor#readme",
"bugs": {
"url": "https://github.com/native-html/core/issues"
},
"author": "Jules Sam. Randolph <[email protected]> (https://github.com/jsamr)",
"license": "MIT",
"keywords": [
"react-native",
"react-native-render-html",
"CSS"
],
"repository": {
"type": "git",
"url": "git+ssh://[email protected]/native-html/core.git",
"directory": "packages/css-processor"
},
"scripts": {
"test": "yarn test:jest && yarn test:ts && yarn test:lint",
"test:jest": "jest src/",
"test:ts": "tsc --noEmit",
"test:lint": "eslint --ext ts,tsx src/",
"build": "bob build",
"prepack": "yarn run build"
},
"devDependencies": {
"@babel/cli": "^7.13.16",
"@babel/core": "^7.14.0",
"@babel/plugin-transform-react-jsx": "^7.13.12",
"@babel/preset-env": "^7.14.2",
"@babel/preset-typescript": "^7.13.0",
"@babel/runtime": "^7.14.0",
"@react-native-community/bob": "^0.17.1",
"@release-it/conventional-changelog": "^2.0.1",
"@types/jest": "^26.0.23",
"@types/react": "^17.0.5",
"@types/react-native": "^0.64.4",
"babel-jest": "^26.6.3",
"eslint": "^7.25.0",
"jest": "^26.6.3",
"metro-react-native-babel-preset": "^0.66.0",
"param-case": "^3.0.4",
"prettier": "^2.2.1",
"react": "17.0.2",
"release-config": "workspace:*",
"release-it": "^14.6.1",
"typescript": "~4.2.4"
},
"peerDependencies": {
"@types/react": "*"
},
"dependencies": {
"css-to-react-native": "^3.0.0",
"csstype": "^3.0.9"
},
"publishConfig": {
"access": "public"
},
"@react-native-community/bob": {
"source": "src",
"output": "lib",
"targets": [
"commonjs",
[
"typescript",
{
"project": "tsconfig.build.json"
}
]
]
}
}