-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
66 lines (66 loc) · 2.04 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
64
65
66
{
"name": "@kinopoisk-int/evgen",
"version": "0.0.0",
"license": "Yandex",
"author": "Kinopoisk Frontend Team <kinopoisk-dev@yandex-team.ru>",
"repository": {
"type": "arc",
"url": "https://a.yandex-team.ru/arcadia/kinopoisk/frontend/packages/evgen"
},
"engines": {
"node": ">=20"
},
"packageManager": "pnpm@8.15.6",
"bin": {
"evgen": "./dist/cli.js"
},
"files": [
"dist",
"package.json",
"README.md"
],
"pkg": {
"scripts": "dist/**/*.js",
"assets": "dist/templates/**/*",
"outputPath": "dist"
},
"scripts": {
"clean:dist": "rm -rf dist",
"clean:modules": "rm -rf node_modules",
"clean": "npm run clean:dist && npm run clean:modules",
"build": "npm run clean:dist && tsc --project . && cp -r src/templates dist",
"demo": "ts-node src/cli.ts --events_path demo/events --evgen_config_path demo/evgen.yaml",
"lint": "eslint . --ext=js,ts",
"prepublishOnly": "npm run build",
"test": "jest --ci --passWithNoTests",
"evgen": "ts-node src/cli.ts"
},
"dependencies": {
"commander": "10.0.1",
"fast-glob": "3.2.12",
"handlebars": "4.7.7",
"handlebars-helpers": "0.10.0",
"lodash": "4.17.21",
"yaml": "2.3.1"
},
"devDependencies": {
"@babel/core": "7.21.4",
"@babel/preset-env": "7.21.4",
"@babel/preset-typescript": "7.21.4",
"@jest/types": "29.6.3",
"@tsconfig/node18": "1.0.1",
"@types/handlebars-helpers": "0.5.3",
"@types/lodash": "4.14.195",
"@types/node": "20.11.16",
"@typescript-eslint/eslint-plugin": "6.7.4",
"@typescript-eslint/parser": "6.7.4",
"eslint": "8.32.0",
"eslint-config-prettier": "8.6.0",
"eslint-plugin-prettier": "5.0.0",
"jest": "26.6.3",
"jest-html-reporters": "3.0.6",
"prettier": "3.0.3",
"ts-node": "10.9.1",
"typescript": "4.9.5"
}
}