-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
43 lines (43 loc) · 1.02 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
{
"name": "ymlts",
"version": "1.1.1",
"author": "Deiring Andreas",
"email": "[email protected]",
"description": "yaml typescript generator",
"license": "MIT",
"repository": "github:LaCocoRoco/ymlts",
"homepage": "https://github.com/Lacocoroco/ymlts#readme",
"keywords": [
"yaml",
"typescript",
"generator"
],
"bin": {
"ymlts": "dist/index.js"
},
"scripts": {
"lint": "eslint **/*.ts --fix",
"test": "jest",
"dev": "ts-node src/index.ts",
"build": "rimraf dist && tsc"
},
"dependencies": {
"js-yaml": "^4.1.0",
"lodash": "^4.17.21",
"quicktype-core": "6.0.62",
"yargs": "^17.4.0"
},
"devDependencies": {
"@types/jest": "^27.4.1",
"@types/js-yaml": "^4.0.5",
"@types/yargs": "^17.0.10",
"@typescript-eslint/eslint-plugin": "^5.16.0",
"@typescript-eslint/parser": "^5.16.0",
"eslint": "^8.11.0",
"eslint-config-google": "^0.14.0",
"rimraf": "^3.0.2",
"ts-jest": "^27.1.3",
"ts-node": "^10.7.0",
"typescript": "^4.6.2"
}
}