forked from lukasoppermann/design-token-transformer
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
33 lines (33 loc) · 1021 Bytes
/
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
{
"name": "@cawo88/design-token-transformer",
"version": "0.6.13",
"description": "Base repo to transform json design tokens from the figma design token plugin via amazon style directory.",
"author": "Lukas Oppermann",
"contributor": "Carol Leung",
"license": "MIT",
"main": "build/index.d.ts",
"types": "build/index.d.ts",
"dependencies": {
"style-dictionary": "^3"
},
"devDependencies": {
"@types/jest": "^27.0.3",
"auto": "^10.32.5",
"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",
"release": "auto shipit --base-branch=main --name=cawo88"
},
"repository": {
"type": "git",
"url": "git+https://github.com/cawo88/design-token-transformer.git"
},
"bugs": {
"url": "https://github.com/cawo88/design-token-transformer/issues"
},
"homepage": "https://github.com/cawo88/design-token-transformer#readme"
}