-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
60 lines (60 loc) · 1.48 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
{
"name": "@gofunky/cssauron",
"description": "build a matching function in CSS for any nested object structure without eval",
"type": "module",
"exports": {
"import": "./lib/index.mjs"
},
"module": "./lib/index.mjs",
"scripts": {
"test": "node --experimental-modules --experimental-specifier-resolution=node test/index.mjs | tap-spec",
"coverage": "nyc --reporter=lcov node --experimental-modules --experimental-specifier-resolution=node test/index.mjs | tap-nyc",
"report": "nyc report --reporter=html",
"lint": "standard"
},
"repository": {
"type": "git",
"url": "git://github.com/gofunky/cssauron.git"
},
"keywords": [
"css",
"selector",
"parser",
"match",
"stream",
"parser",
"transform",
"library"
],
"author": {
"name": "matfax",
"email": "mat@fax.fyi",
"url": "https://github.com/gofunky/cssauron"
},
"license": "MIT",
"dependencies": {},
"devDependencies": {
"babel-eslint": "10.1.0",
"codecov": "3.8.1",
"eslint": "7.12.1",
"eslint-config-standard": "16.0.2",
"eslint-plugin-import": "2.22.1",
"eslint-plugin-node": "11.1.0",
"eslint-plugin-promise": "4.2.1",
"eslint-plugin-standard": "4.0.2",
"nyc": "15.1.0",
"standard": "16.0.3",
"supertape": "2.0.1",
"tap-nyc": "1.0.3",
"tap-spec": "5.0.0"
},
"engines": {
"node": ">= 12.18.3"
},
"publishConfig": {
"access": "public"
},
"standard": {
"parser": "babel-eslint"
}
}