forked from AdguardTeam/Scriptlets
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
102 lines (102 loc) · 3.44 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
{
"name": "@adguard/scriptlets",
"version": "1.6.39",
"description": "AdGuard's JavaScript library of Scriptlets and Redirect resources",
"scripts": {
"build": "babel-node bundler.js",
"build-tests": "yarn build && babel-node scripts/build-tests.js",
"test": "yarn build-tests && node tests/index.js",
"browserstack": "babel-node scripts/build-tests.js && node browserstack.js",
"gui-test": "babel-node scripts/build-tests.js && open http://localhost:8585 && node ./tests/server.js",
"lint": "eslint .",
"lint-staged": "lint-staged",
"wiki:build-docs": "node scripts/build-docs.js",
"wiki:check-updates": "node ./scripts/check-sources-updates.js",
"wiki:update": "yarn wiki:check-updates && node ./scripts/build-compatibility-table.js",
"prepublishOnly": "yarn build",
"increment": "yarn version --patch --no-git-tag-version"
},
"lint-staged": {
"{src,tests,scripts}/**/*.js": [
"eslint"
]
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"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": {
"@babel/runtime": "^7.7.2",
"js-yaml": "^3.13.1"
},
"devDependencies": {
"@babel/cli": "^7.8.4",
"@babel/core": "^7.9.0",
"@babel/eslint-parser": "^7.16.5",
"@babel/node": "^7.8.7",
"@babel/plugin-proposal-class-properties": "^7.16.5",
"@babel/plugin-proposal-private-methods": "^7.16.5",
"@babel/plugin-transform-regenerator": "^7.7.0",
"@babel/plugin-transform-runtime": "^7.6.2",
"@babel/preset-env": "^7.9.0",
"@rollup/plugin-babel": "^5.0.4",
"@rollup/plugin-commonjs": "^17.0.0",
"@rollup/plugin-json": "^4.1.0",
"@rollup/plugin-node-resolve": "^8.1.0",
"@rollup/plugin-replace": "^4.0.0",
"axios": "^0.21.1",
"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": "^7.25.0",
"eslint-config-airbnb-base": "^14.2.1",
"eslint-plugin-compat": "^3.9.0",
"eslint-plugin-import": "^2.22.1",
"fs-extra": "^10.0.1",
"husky": "^3.1.0",
"js-reporters": "^2.1.0",
"kleur": "^4.1.4",
"lint-staged": "^12.1.2",
"node-qunit-puppeteer": "^2.0.3",
"qunit": "^2.9.3",
"rollup": "^2.70.2",
"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.13.0"
},
"files": [
"dist"
],
"browserslist": [
"last 1 versions",
"chrome >= 55",
"safari >= 10",
"ie >= 9"
]
}