-
Notifications
You must be signed in to change notification settings - Fork 52
/
Copy pathpackage.json
105 lines (105 loc) · 2.72 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
{
"name": "doiuse",
"version": "6.0.5",
"description": "Lint CSS for browser support against caniuse database",
"main:": "./exports/index.cjs",
"type": "module",
"exports": {
"./lib/*": "./lib/*",
".": {
"require": "./exports/index.cjs",
"import": "./exports/index.js"
},
"./stream": {
"require": "./exports/stream.cjs",
"import": "./exports/stream.js"
}
},
"bin": "./bin/cli.js",
"repository": {
"type": "git",
"url": "https://github.com/anandthakker/doiuse.git"
},
"keywords": [
"lint",
"css",
"browser",
"support",
"caniuse",
"stylelint"
],
"author": "Carlos Lopez Jr. <clshortfuse@gmail.com> (https://github.com/clshortfuse)",
"contributors": [
"Robbie Wadley (https://github.com/RJWadley)",
"Anand Thakker <mail@anandthakker.net> (http://www.anandthakker.net/)",
"Piotr Kuczynski <piotr.kuczynski@gmail.com> (https://github.com/pkuczynski)"
],
"license": "MIT",
"bugs": {
"url": "https://github.com/anandthakker/doiuse/issues"
},
"homepage": "https://github.com/anandthakker/doiuse",
"engines": {
"node": ">=16"
},
"dependencies": {
"browserslist": "^4.24.0",
"caniuse-lite": "^1.0.30001669",
"css-tokenize": "^1.0.1",
"duplexify": "^4.1.3",
"multimatch": "^5.0.0",
"postcss": "^8.4.47",
"source-map": "^0.7.4",
"yargs": "^17.7.2"
},
"devDependencies": {
"@types/caniuse-lite": "^1.0.5",
"@types/duplexify": "^3.6.4",
"@types/node": "^16.18.114",
"@types/tap": "^15.0.12",
"@types/yargs": "^17.0.33",
"@typescript-eslint/eslint-plugin": "^5.62.0",
"@typescript-eslint/parser": "^5.62.0",
"c8": "^7.14.0",
"caniuse-db": "^1.0.30001669",
"eslint": "^8.57.1",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-plugin-canonical": "^4.18.1",
"eslint-plugin-import": "^2.31.0",
"eslint-plugin-jsdoc": "^46.10.1",
"eslint-plugin-n": "^16.6.2",
"eslint-plugin-unicorn": "^47.0.0",
"mock-fs": "^4.14.0",
"postcss-import": "^14.1.0",
"rollup": "^2.79.2",
"safe-regex": "^2.1.1",
"tap": "^18.8.0",
"typescript": "^5.6.3"
},
"typesVersions": {
"*": {
"*": [
"types/*"
]
}
},
"files": [
"bin",
"data",
"features",
"exports",
"lib",
"types",
"utils"
],
"scripts": {
"pretest": "eslint \"./bin/**/*.js\" \"./data/**/*.js\" \"./utils/**/*.js\" \"./lib/**/*.js\" \"./test/**/*.js\" && tsc --noEmit",
"test": "c8 tap test/**/*.js",
"prepare": "rollup -c rollup.config.js",
"prepublishOnly": "tsc --emitDeclarationOnly",
"updateFeatures": "scripts/update-caniuse.sh && node scripts/update-features.js"
},
"tap": {
"disable-coverage": true
}
}