forked from lukasoppermann/design-token-transformer
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
29 lines (29 loc) · 879 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
{
"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": {
"style-dictionary": "^3"
},
"devDependencies": {
"jest": "^27.0.6",
"ts-jest": "^27.0.3",
"@types/jest": "^26.0.23"
},
"scripts": {
"start": "npm run transform-tokens",
"transform-tokens": "node ./transformTokens.js",
"test": "jest tests --coverage=false"
},
"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"
}