forked from lukasoppermann/design-token-transformer
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
32 lines (32 loc) · 1 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
{
"name": "design-token-transformer",
"version": "0.6.0",
"description": "Base repo to transform json design tokens from the figma design token plugin via amazon style directory.",
"main": "index.js",
"dependencies": {
"@ctrl/tinycolor": "^3.4.0",
"style-dictionary": "^3"
},
"devDependencies": {
"@types/jest": "^27.0.3",
"jest": "^27.0.6",
"ts-jest": "^27.0.3"
},
"scripts": {
"start": "npm run transform-tokens",
"transform-tokens": "node ./transformTokens.js",
"test": "jest tests --coverage=false",
"transform:android": "node ./examples/android/build.js",
"transform:ios": "node ./examples/ios/build.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/lukasoppermann/design-token-transformer.git"
},
"author": "Lukas Oppermann",
"license": "MIT",
"bugs": {
"url": "https://github.com/lukasoppermann/design-token-transformer/issues"
},
"homepage": "https://github.com/lukasoppermann/design-token-transformer#readme"
}