-
Notifications
You must be signed in to change notification settings - Fork 27
Expand file tree
/
Copy pathpackage.json
More file actions
91 lines (91 loc) · 2.46 KB
/
package.json
File metadata and controls
91 lines (91 loc) · 2.46 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
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
{
"name": "@bitrix/cli",
"version": "4.0.0",
"description": "Bitrix frontend tool",
"main": "./dist/cli.js",
"types": "./types/index.d.ts",
"engines": {
"node": ">=22"
},
"type": "module",
"scripts": {
"build": "tsup-node ./src/cli.ts --format esm",
"test": "tsx --import=tsx/esm ./node_modules/.bin/mocha ./test/**/*.test.ts --inline-diffs --color=true",
"test:watch": "tsx watch --import=tsx/esm ./node_modules/.bin/mocha ./test/**/*.test.ts --inline-diffs --color=true"
},
"bin": {
"bitrix": "./bin/bitrix"
},
"repository": {
"type": "git",
"url": "https://github.com/bitrix-tools/cli.git"
},
"homepage": "https://github.com/bitrix-tools/cli#readme",
"bugs": {
"url": "https://github.com/bitrix-tools/cli/issues"
},
"author": "Bitrix",
"license": "MIT",
"devDependencies": {
"@types/babel__core": "^7.20.5",
"@types/eslint": "^9.6.1",
"@types/node": "^24.0.12",
"tsup": "^8.5.0",
"tsx": "^4.20.3",
"typescript": "^5.8.3"
},
"dependencies": {
"@babel/core": "^7.28.3",
"@babel/plugin-external-helpers": "^7.27.1",
"@babel/plugin-transform-flow-strip-types": "^7.27.1",
"@babel/plugin-transform-runtime": "^7.28.3",
"@babel/preset-env": "^7.28.3",
"@inquirer/prompts": "^8.2.0",
"@playwright/test": "^1.57.0",
"@rollup/plugin-babel": "^6.0.4",
"@rollup/plugin-commonjs": "^28.0.6",
"@rollup/plugin-image": "^3.0.3",
"@rollup/plugin-json": "^6.1.0",
"@rollup/plugin-node-resolve": "^16.0.1",
"@rollup/plugin-typescript": "^12.3.0",
"@types/chai": "^5.2.3",
"@types/mocha": "^10.0.10",
"browserslist": "^4.28.1",
"chai": "^6.2.1",
"chalk": "^5.6.0",
"chokidar": "^5.0.0",
"commander": "^14.0.0",
"concat-with-sourcemaps": "^1.1.0",
"eslint": "^8.57.1",
"fast-glob": "^3.3.3",
"log-update": "^7.0.2",
"mocha": "^11.3.0",
"ora": "^8.2.0",
"p-queue": "^8.1.0",
"php-parser": "^3.2.5",
"php-writer": "^3.0.0",
"playwright": "^1.57.0",
"prettier": "^3.7.4",
"prettier-plugin-brace-style": "^0.8.2",
"rollup": "^4.49.0",
"rollup-plugin-postcss": "^4.0.2",
"strip-ansi": "^7.1.2",
"terminal-link": "^5.0.0",
"terser": "^5.43.1",
"text-table": "^0.2.0",
"tslib": "^2.8.1"
},
"optionalDependencies": {
"weak": "^1.0.1"
},
"directories": {
"test": "test"
},
"keywords": [
"bitrix",
"bitrix24",
"cli",
"bundler",
"frontend"
]
}