-
Notifications
You must be signed in to change notification settings - Fork 51
/
package.json
69 lines (69 loc) · 1.79 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-style-tachyons",
"description": "functional, maintainable styling for react-native",
"license": "Apache-2.0",
"version": "4.2.8",
"keywords": [
"react",
"react-native",
"android",
"ios",
"StyleSheet",
"style",
"responsive",
"mobile",
"performance",
"design",
"css"
],
"author": {
"name": "Fabian Zeindl",
"email": "[email protected]",
"url": "http://github.com/fab1an"
},
"homepage": "https://github.com/tachyons-css/react-native-style-tachyons",
"repository": {
"type": "git",
"url": "git+https://github.com/tachyons-css/react-native-style-tachyons.git"
},
"bugs": {
"url": "https://github.com/tachyons-css/react-native-style-tachyons/issues"
},
"main": "lib/index.js",
"dependencies": {
"@types/color": "4.2.0",
"@types/lodash": "4.17.9",
"@types/react": "18.3.10",
"color": "4.2.3",
"css-color-names": "1.0.1",
"lodash": "4.17.21",
"react": "18.3.1"
},
"files": [
"lib/"
],
"devDependencies": {
"@eslint/eslintrc": "3.1.0",
"@eslint/js": "9.13.0",
"@types/benchmark": "2.1.5",
"@types/node": "22.7.4",
"@types/react-test-renderer": "18.3.0",
"@types/tape": "5.6.4",
"benchmark": "2.1.4",
"eslint": "9.13.0",
"eslint-plugin-react": "7.37.2",
"faucet": "0.0.4",
"microtime": "3.1.1",
"react-test-renderer": "18.3.1",
"tape": "5.9.0",
"ts-node": "10.9.2",
"typescript": "5.6.2",
"typescript-eslint": "8.12.2"
},
"scripts": {
"build": "rm -Rf lib && tsc --build src",
"lint": "eslint --fix src && eslint --fix test",
"test": "npm run lint && npm run build && npm run _test",
"_test": "ts-node --project test/tsconfig.json node_modules/tape/bin/tape test/**/*.tsx | faucet"
}
}