forked from AdguardTeam/ExtendedCss
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
61 lines (61 loc) · 1.65 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
{
"name": "extended-css",
"version": "1.3.12",
"description": "Module for applying CSS styles with extended selection properties.",
"main": "dist/extended-css.cjs.js",
"module": "dist/extended-css.esm.js",
"types": "dist/extended-css.d.ts",
"directories": {
"test": "test"
},
"engines": {
"node": ">=10"
},
"scripts": {
"test": "node tasks/tests.js",
"build": "node tasks/compile.js",
"browserstack": "node tasks/tests.js && node tasks/browserstack.js",
"lint": "eslint ."
},
"dependencies": {},
"devDependencies": {
"@babel/core": "^7.7.5",
"@babel/plugin-transform-runtime": "^7.9.6",
"@babel/preset-env": "^7.9.6",
"@rollup/plugin-babel": "^5.0.0",
"@rollup/plugin-commonjs": "^15.0.0",
"@rollup/plugin-node-resolve": "^9.0.0",
"browserstack-runner": "^0.9.0",
"dotenv": "^8.2.0",
"eslint": "^7.6.0",
"eslint-config-airbnb-base": "^14.2.0",
"eslint-plugin-import": "^2.16.0",
"fs-extra": "^9.0.1",
"husky": "^4.2.5",
"node-qunit-puppeteer": "^2.0.3",
"rollup": "^2.8.2",
"rollup-plugin-copy": "^3.3.0",
"rollup-plugin-delete": "^2.0.0",
"rollup-plugin-terser": "^7.0.0"
},
"husky": {
"hooks": {
"pre-commit": "yarn lint; yarn test"
}
},
"repository": {
"type": "git",
"url": "https://github.com/AdguardTeam/ExtendedCss.git"
},
"author": "AdGuard",
"licenses": [
{
"type": "LGPL-3.0",
"url": "https://github.com/AdguardTeam/ExtendedCss/blob/master/LICENSE"
}
],
"bugs": {
"url": "https://github.com/AdguardTeam/ExtendedCss/issues"
},
"homepage": "https://github.com/AdguardTeam/ExtendedCss"
}