-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
72 lines (72 loc) · 1.57 KB
/
Copy pathpackage.json
File metadata and controls
72 lines (72 loc) · 1.57 KB
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
64
65
66
67
68
69
70
71
72
{
"name": "dtcgen",
"version": "1.0.1",
"description": "Generate xcassets from Figma",
"engineStrict": true,
"engines": {
"node": ">= 14.15.4"
},
"keywords": [
"typescript",
"figma",
"ios",
"xcassets",
"codegeneration"
],
"repository": {
"type": "git",
"url": "git@github.com:mitolog/dtcgen.git"
},
"bin": {
"dtcgen": "./bin/cli"
},
"devDependencies": {
"@types/execa": "^0.9.0",
"@types/fs-extra": "^7.0.0",
"@types/jest": "^24.0.0",
"@types/lodash": "^4.14.134",
"@types/node": "^8.10.49",
"jest": "~24.8.0",
"madge": "^4.0.1",
"prettier": "1.14.3",
"ts-jest": "^24.0.0",
"tslint": "~5.11.0",
"tslint-config-prettier": "1.15.0",
"tslint-microsoft-contrib": "~5.2.1",
"tsutils": "~3.0.0",
"typescript": "^3.5.1"
},
"scripts": {
"prepare": "tsc",
"build": "tsc",
"build:watch": "tsc -w",
"lint": "tslint -t stylish --project \"tsconfig.json\"",
"test": "jest --runInBand"
},
"author": "mitolog <hkyhm5l@gmail.com>",
"license": "Apache-2.0",
"dependencies": {
"axios": "^0.21.2",
"cac": "^6.5.2",
"dotenv": "^6.2.0",
"execa": "^2.0.3",
"fs-extra": "^7.0.1",
"handlebars": "^4.1.2",
"handlebars-helpers": "^0.10.0",
"inversify": "^5.0.1",
"lodash": "4.17.21",
"ora": "^5.0.0",
"pluralize": "^8.0.0",
"reflect-metadata": "^0.1.13",
"tslib": "~1.9.3",
"uuid": "^3.3.2"
},
"files": [
"bin",
"dist",
"templates",
"dtc.config.json",
".env.default",
"dtc.config.json.default"
]
}