-
Notifications
You must be signed in to change notification settings - Fork 9
/
package.json
62 lines (62 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
{
"name": "@klarna/platform-colors",
"version": "0.4.0",
"description": "Generate platform native colors for iOS, Android & Web",
"main": "src/index.js",
"types": "src/index.d.ts",
"bin": {
"platform-colors": "bin/platform-colors"
},
"scripts": {
"test": "jest src"
},
"repository": "github:klarna-incubator/platform-colors",
"homepage": "https://github.com/klarna-incubator/platform-colors",
"bugs": {
"url": "https://github.com/klarna-incubator/platform-colors/issues"
},
"license": "Apache-2.0",
"keywords": [
"react-native",
"react",
"mobile",
"ios",
"android",
"ui",
"dark-mode",
"accessibility"
],
"engines": {
"node": ">=10"
},
"peerDependencies": {
"prettier": ">2.5.1"
},
"peerDependenciesMeta": {
"prettier": {
"optional": true
}
},
"dependencies": {
"chalk": "^4.1.2",
"change-case": "^4.1.2",
"chroma-js": "^2.1.2",
"cosmiconfig": "^7.0.1",
"fast-glob": "^3.2.11",
"fs-extra": "^10.0.0",
"inquirer": "^8.2.0",
"xmlbuilder2": "^3.0.2"
},
"devDependencies": {
"jest": "^27.4.7",
"prettier": "^2.4.1"
},
"codegenConfig": {
"name": "KLAPlatformColorsSpec",
"type": "modules",
"jsSrcsDir": "src",
"android": {
"javaPackageName": "com.klarna.platformcolors"
}
}
}