-
Notifications
You must be signed in to change notification settings - Fork 30
/
package.json
115 lines (115 loc) · 4.13 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
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
{
"name": "@adguard/scriptlets",
"version": "1.12.11",
"description": "AdGuard's JavaScript library of Scriptlets and Redirect resources",
"scripts": {
"build": "babel-node -x .js,.ts scripts/build.js",
"postbuild": "babel-node -x .js,.ts scripts/check-corelibs-dist.js",
"test": "yarn test:jest && yarn test:qunit",
"browserstack": "yarn test --build && node browserstack.js",
"test:qunit": "babel-node -x .js,.ts scripts/test.js",
"test:jest": "jest",
"lint": "yarn lint:code && yarn lint:types && yarn lint:md",
"lint:code": "eslint --cache .",
"lint:types": "tsc --noEmit",
"lint:md": "markdownlint .",
"lint-staged": "lint-staged",
"prepare": "husky install",
"wiki": "yarn wiki:build-table && yarn wiki:build-docs",
"wiki:build-table": "node ./scripts/check-sources-updates.js && node ./scripts/build-compatibility-table.js",
"wiki:build-docs": "node scripts/build-docs.js",
"prepublishOnly": "yarn build",
"increment": "yarn version --patch --no-git-tag-version"
},
"lint-staged": {
"{src,tests,scripts}/**/*.js": [
"eslint"
],
"**/*.md": [
"markdownlint"
]
},
"author": "AdGuard",
"license": "GPL-3.0",
"repository": {
"type": "git",
"url": "git+https://github.com/AdguardTeam/Scriptlets.git"
},
"bugs": {
"url": "https://github.com/AdguardTeam/Scriptlets/issues"
},
"homepage": "https://github.com/AdguardTeam/Scriptlets#adguard-scriptlets-and-redirect-resources",
"main": "dist/umd/scriptlets.umd.js",
"types": "dist/umd/scriptlets.d.ts",
"exports": {
"./package.json": "./package.json",
".": {
"default": "./dist/umd/scriptlets.umd.js"
}
},
"dependencies": {
"@adguard/agtree": "^2.1.2",
"@babel/runtime": "^7.20.13",
"js-yaml": "^3.13.1"
},
"devDependencies": {
"@babel/cli": "^7.20.7",
"@babel/core": "^7.20.12",
"@babel/eslint-parser": "^7.16.5",
"@babel/node": "^7.8.7",
"@babel/plugin-proposal-class-properties": "^7.18.6",
"@babel/plugin-proposal-private-methods": "^7.18.6",
"@babel/plugin-transform-regenerator": "^7.20.5",
"@babel/plugin-transform-runtime": "^7.19.6",
"@babel/preset-env": "^7.20.2",
"@babel/preset-typescript": "^7.21.4",
"@rollup/plugin-babel": "^6.0.3",
"@rollup/plugin-commonjs": "^24.0.1",
"@rollup/plugin-json": "^6.0.1",
"@rollup/plugin-node-resolve": "^15.0.1",
"@rollup/plugin-replace": "^5.0.2",
"@types/jest": "^29.5.12",
"@typescript-eslint/eslint-plugin": "^5.52.0",
"@typescript-eslint/parser": "^5.52.0",
"axios": "^1.7.4",
"browserstack-local": "^1.4.9",
"chalk": "^4.1.2",
"commander": "^9.2.0",
"cross-env": "^7.0.3",
"crypto-js": "^4.1.1",
"dotenv": "^8.2.0",
"dox": "^0.9.0",
"eslint": "^8.34.0",
"eslint-config-airbnb-base": "^14.2.1",
"eslint-config-airbnb-typescript": "^17.0.0",
"eslint-import-resolver-typescript": "^3.5.5",
"eslint-plugin-compat": "^3.9.0",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-import-newlines": "^1.3.1",
"eslint-plugin-jsdoc": "^50.2.2",
"fs-extra": "^10.0.1",
"husky": "^8.0.3",
"jest": "^29.5.0",
"jest-environment-jsdom": "^29.5.0",
"js-reporters": "^2.1.0",
"kleur": "^4.1.4",
"lint-staged": "^12.1.2",
"markdownlint": "^0.28.2",
"markdownlint-cli": "^0.34.0",
"node-qunit-puppeteer": "^2.2.0",
"openurl": "^1.1.1",
"qunit": "^2.22.0",
"rollup": "^3.15.0",
"rollup-plugin-cleanup": "^3.1.1",
"rollup-plugin-copy": "^3.1.0",
"rollup-plugin-generate-html": "^0.2.0",
"selenium-webdriver": "^4.1.1",
"sinon": "^7.5.0",
"terser": "^5.16.1",
"ts-node": "^10.9.1",
"typescript": "^4.9.5"
},
"files": [
"dist"
]
}