forked from bitrix-tools/cli
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
97 lines (97 loc) · 2.88 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
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
92
93
94
95
96
97
{
"name": "@bitrix/cli",
"version": "2.2.7",
"description": "Bitrix CLI tools",
"main": "./src/cli/bitrix.js",
"engines": {
"node": ">= 7.5.0"
},
"scripts": {
"test": "LOGGER_LEVEL=0 npx mocha --exit --require @babel/register --timeout 5000 test/**/*.test.js",
"test:dev": "LOGGER_LEVEL=0 npx mocha --watch --require @babel/register --timeout 5000 test/**/*.test.js",
"test:cover": "LOGGER_LEVEL=0 npx istanbul cover ./node_modules/.bin/_mocha -- --exit --require @babel/register --timeout 5000 test/**/*.test.js",
"build": "npx rollup -c",
"dev": "npx rollup -c -w",
"prod": "npm run test && npm run build"
},
"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",
"dependencies": {
"@babel/core": "7.5.5",
"@babel/plugin-external-helpers": "^7.2.0",
"@babel/plugin-proposal-class-properties": "7.4.0",
"@babel/plugin-proposal-object-rest-spread": "7.4.3",
"@babel/plugin-proposal-private-methods": "7.2.3",
"@babel/plugin-transform-flow-strip-types": "7.0.0",
"@babel/preset-env": "7.4.3",
"@babel/register": "7.4.0",
"@babel/runtime": "7.4.3",
"@bitrix/logger": "^1.0.5",
"assert": "^1.4.1",
"autoprefixer": "^9.6.1",
"babel-eslint": "^10.0.1",
"babel-plugin-module-resolver": "^3.1.3",
"boxen": "^2.1.0",
"camelcase": "^5.0.0",
"chokidar": "^2.0.4",
"colors": "^1.3.2",
"concat-with-sourcemaps": "^1.1.0",
"create-symlink": "^1.0.0",
"eslint": "^6.1.0",
"eslint-config-airbnb-base": "^13.2.0",
"eslint-plugin-babel": "^5.3.0",
"eslint-plugin-flowtype": "^3.12.1",
"eslint-plugin-import": "^2.18.2",
"fast-glob": "^2.2.4",
"filesize": "^3.6.1",
"flow-bin": "^0.96.0",
"fs-extra": "^7.0.1",
"iconv-lite": "^0.4.24",
"ini": "^1.3.5",
"inquirer": "^6.2.1",
"jschardet": "^2.1.0",
"jsdom": "^12.2.0",
"log-symbols": "^2.2.0",
"minimist": "^1.2.0",
"mocha": "^5.2.0",
"mustache": "^3.0.1",
"ora": "^3.0.0",
"rollup": "^0.67.3",
"rollup-plugin-babel": "^4.0.3",
"rollup-plugin-commonjs": "^9.2.0",
"rollup-plugin-flow": "^1.1.1",
"rollup-plugin-json": "^3.1.0",
"rollup-plugin-node-resolve": "^4.0.0",
"rollup-plugin-postcss-independed": "^1.8.0",
"rollup-plugin-simple-babel": "^1.0.5",
"sinon": "^7.1.1",
"slash": "^2.0.0",
"update-notifier": "^2.5.0"
},
"devDependencies": {
"@babel/plugin-transform-runtime": "^7.2.0",
"babel-plugin-rewire": "^1.2.0",
"istanbul": "^1.1.0-alpha.1",
"rewire": "^4.0.1"
},
"directories": {
"test": "test"
},
"keywords": [
"bitrix",
"bitrix24",
"cli",
"bundler"
]
}