-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
73 lines (73 loc) · 1.68 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
{
"name": "@gofunky/trumpet",
"description": "parse and transform streaming html using css selectors",
"main": "index.js",
"dependencies": {
"duplexer2": "~0.1.4",
"html-select2": "^1.0.2",
"html-tokenize": "^2.0.1",
"readable-stream": "^3.4.0",
"through2": "^4.0.2"
},
"devDependencies": {
"@hutson/npm-deploy-git-tag": "6.0.0",
"babel-eslint": "10.1.0",
"codecov": "3.8.1",
"coffeescript": "2.5.1",
"concat-stream": "2.0.0",
"eslint": "7.12.1",
"eslint-config-standard": "16.0.2",
"eslint-plugin-html": "6.1.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",
"htmlclean": "3.0.8",
"json": "10.0.0",
"nyc": "15.1.0",
"standard": "16.0.3",
"tap-nyc": "1.0.3",
"tap-spec": "5.0.0",
"tape": "4.13.3",
"try-to-tape": "1.2.6"
},
"scripts": {
"test": "tape test/*.js | tap-spec",
"coverage": "nyc --reporter=lcov tape test/*.js | tap-nyc",
"report": "nyc report --reporter=html",
"lint": "eslint",
"deploy": "npm-deploy-git-tag"
},
"repository": {
"type": "git",
"url": "http://github.com/gofunky/trumpet.git"
},
"keywords": [
"html",
"stream",
"parser",
"transform",
"selector",
"css",
"library"
],
"author": {
"name": "matfax",
"email": "mat@fax.fyi",
"url": "https://github.com/gofunky/trumpet"
},
"license": "MIT",
"engines": {
"node": ">= 12.18.3"
},
"publishConfig": {
"access": "public"
},
"standard": {
"parser": "babel-eslint",
"filename": "**./*.html **/*.js",
"plugins": [
"html"
]
}
}