-
Notifications
You must be signed in to change notification settings - Fork 37
/
package.json
81 lines (81 loc) · 3.01 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
{
"name": "@metrica/tag",
"version": "0.0.1",
"license": "SEE LICENSE IN LICENSE.md",
"private": true,
"repository": {
"type": "git",
"url": "https://github.com/yandex/metrica-tag.git"
},
"scripts": {
"build": "npm run features && npm run ts-node -- ./scripts/build/build.ts",
"build:raw": "npm run build -- --no-uglify",
"features": "ts-node -- ./scripts/genFeatures.ts --files ./features.json -d",
"fix": "npm run lint -- --fix",
"fix:code": "npm run lint -- --fix --code",
"fix:prettier": "npm run lint -- --fix --prettier",
"lint": "npm run ts-node -- ./scripts/lint.ts",
"lint:code": "npm run lint -- --code",
"lint:prettier": "npm run lint -- --prettier",
"lint:typecheck": "npm run lint -- --typecheck",
"postinstall": "npm run features",
"precommit": "npm run ts-node -- ./scripts/precommitHook.ts",
"setup-hooks": "cp -f hooks/pre-commit .git/hooks/pre-commit",
"test:unit": "npm run test:unit:coverage -- './src/**/*.spec.ts'",
"test:unit:coverage": "npm run test:unit:mocha -- --reporter=mochawesome --reporter-options reportDir=test/unit/coverage,reportFilename=index.html",
"test:unit:mocha": "TS_NODE_PROJECT=tsconfig.unit.json mocha -r ts-node/register -r tsconfig-paths/register",
"ts-node": "TS_NODE_FILES=true NODE_OPTIONS=--max-old-space-size=6144 ts-node -r tsconfig-paths/register --swc"
},
"dependencies": {
"promise-polyfill": "8.1.3",
"tslib": "1.14.1"
},
"devDependencies": {
"@ampproject/rollup-plugin-closure-compiler": "0.27.0",
"@rollup/plugin-commonjs": "11.1.0",
"@rollup/plugin-node-resolve": "7.1.3",
"@rollup/plugin-replace": "2.3.2",
"@swc/core": "1.2.156",
"@swc/helpers": "0.3.8",
"@types/chai": "4.2.11",
"@types/command-line-args": "5.0.0",
"@types/jsdom": "16.2.14",
"@types/mocha": "9.1.1",
"@types/node": "16.18.61",
"@types/promise-polyfill": "6.0.3",
"@types/ps-tree": "1.1.0",
"@types/rollup-plugin-progress": "1.1.1",
"@types/sinon": "9.0.0",
"@typescript-eslint/eslint-plugin": "4.14.1",
"@typescript-eslint/parser": "4.14.1",
"chai": "4.2.0",
"chalk": "4.0.0",
"command-line-args": "5.1.1",
"eslint": "7.32.0",
"eslint-config-airbnb": "18.2.1",
"eslint-config-airbnb-typescript": "12.3.1",
"eslint-config-prettier": "6.11.0",
"eslint-import-resolver-typescript": "2.0.0",
"eslint-plugin-ban": "1.5.2",
"eslint-plugin-import": "2.25.3",
"eslint-plugin-n": "16.6.2",
"eslint-plugin-no-only-tests": "2.4.0",
"jsdom": "19.0.0",
"mocha": "9.2.2",
"mochawesome": "7.1.3",
"prettier": "2.3.0",
"ps-tree": "1.2.0",
"regenerator-runtime": "0.14.0",
"rollup": "2.79.1",
"rollup-plugin-cleanup": "3.1.1",
"rollup-plugin-progress": "1.1.2",
"rollup-plugin-typescript2": "0.27.0",
"rollup-plugin-visualizer": "5.12.0",
"sinon": "9.0.2",
"sinon-chai": "3.5.0",
"ts-node": "10.7.0",
"ts-toolbelt": "6.6.2",
"tsconfig-paths": "3.9.0",
"typescript": "4.1.3"
}
}