-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
63 lines (63 loc) · 1.87 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
{
"name": "token-transformer-cli",
"version": "1.1.4",
"description": "Token Transformer CLI: A versatile library that enables the transformation of token information into desired forms (e.g., converting design tokens into CSS, SCSS, and more).",
"main": "build/transform/index.js",
"bin": {
"tt": "./build/cli/cli.js",
"tt-cli": "./build/cli/cli.js"
},
"types": "build/index.d.ts",
"scripts": {
"command": "ts-node ./src/cli/cli.ts",
"copy:assets": "rsync -av --include='*.js' --include='*/' --exclude='*' src/ build/",
"build": "rm -rf ./build && tsc -p tsconfig.build.json && npm run copy:assets && npm run command run",
"deploy": "npm run build && npm publish --access=public",
"test": "jest --watchAll --verbose"
},
"author": "Yongwoo Jung<[email protected]>",
"license": "MIT",
"devDependencies": {
"@types/fs-extra": "^11.0.1",
"@types/jest": "^29.5.3",
"@types/node": "^20.4.0",
"@types/underscore": "^1.11.5",
"eslint": "^8.44.0",
"eslint-config-airbnb": "^19.0.4",
"eslint-config-airbnb-typescript": "^17.0.0",
"eslint-config-prettier": "^8.8.0",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-unused-imports": "^2.0.0",
"jest": "^29.6.2",
"prettier": "^2.8.8",
"ts-jest": "^29.1.1",
"ts-loader": "^9.4.4",
"ts-node": "^10.9.1",
"typescript": "^5.1.6",
"@types/lodash": "^4.14.196"
},
"dependencies": {
"chalk": "^4.1.2",
"commander": "^11.0.0",
"fs-extra": "^11.1.1",
"handlebars": "^4.7.7",
"lodash": "^4.17.21"
},
"keywords": [
"token",
"transformer",
"zeplin",
"figma",
"jwt",
"json",
"viewer",
"design-token"
],
"engines": {
"node": ">=16.0.0"
},
"homepage": "https://github.com/stegano/token-transformer-cli#readme",
"bugs": {
"url": "https://github.com/stegano/token-transformer-cli/issues"
}
}