-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
54 lines (54 loc) · 1.37 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
{
"name": "lyam",
"description": "Light Ya.Metrika for sites",
"version": "3.2.1",
"author": {
"name": "Denis Seleznev",
"email": "hcodes@yandex.ru",
"url": "https://github.com/hcodes/lyam"
},
"main": "dist/index.common.js",
"module": "dist/index.esm.js",
"typings": "dist/index.d.ts",
"homepage": "https://github.com/hcodes/lyam",
"license": "MIT",
"repository": {
"type": "git",
"url": "git://github.com/hcodes/lyam.git"
},
"keywords": [
"light",
"yandex",
"yandex-metrika",
"metrika"
],
"engines": {
"node": ">= 12"
},
"files": [
"dist",
"README.md",
"LICENSE"
],
"devDependencies": {
"@rollup/plugin-typescript": "^11.1.6",
"@types/jest": "^29.5.14",
"@typescript-eslint/eslint-plugin": "^8.14.0",
"@typescript-eslint/parser": "^8.14.0",
"del-cli": "^6.0.0",
"eslint": "9.14.0",
"jest": "^29.7.0",
"jest-environment-jsdom": "^29.7.0",
"rollup": "^4.27.2",
"ts-jest": "^29.2.5",
"tslib": "^2.8.1",
"typescript": "^5.6.3",
"typescript-eslint": "^8.14.0"
},
"scripts": {
"clean": "del dist/*",
"test": "eslint -c eslint.config.mjs . && jest .",
"build": "npm run clean; rollup --config rollup.config.mjs",
"build:manual-test": "rollup manual-test/manual-test.ts --config rollup.config.js --file manual-test/manual-test.js --format umd"
}
}