-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
66 lines (66 loc) · 1.5 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
{
"name": "@bonniernews/local-esi",
"version": "3.0.1",
"description": "Local Edge Side Includes parser",
"main": "index.js",
"type": "module",
"scripts": {
"test": "mocha",
"posttest": "eslint . --cache",
"prepack": "./node_modules/.bin/rollup index.js --format cjs --file index.cjs && ./node_modules/.bin/rollup ./lib/voidElements.js --format cjs --file ./lib/voidElements.cjs"
},
"keywords": [
"esi",
"stream"
],
"author": "Bonnier News",
"license": "MIT",
"peerDependencies": {
"@bonniernews/atlas-html-stream": ">=2",
"got": ">=11"
},
"devDependencies": {
"@bonniernews/atlas-html-stream": "^2.0.1",
"chai": "^4.3.6",
"chronokinesis": "^3.1.2",
"eslint": "^8.23.1",
"eslint-config-exp": "^0.6.2",
"got": "^11.8.5",
"mocha": "10.2.0",
"nock": "^13.2.9",
"rollup": "^3.25.3"
},
"exports": {
".": {
"import": "./index.js",
"require": "./index.cjs"
},
"./lib/voidElements": {
"import": "./lib/voidElements.js",
"require": "./lib/voidElements.cjs"
}
},
"engines": {
"node": ">=18"
},
"repository": {
"type": "git",
"url": "git://github.com/BonnierNews/local-esi.git"
},
"files": [
"lib/",
"index.js",
"index.cjs"
],
"bugs": {
"url": "https://github.com/BonnierNews/local-esi/issues"
},
"homepage": "https://github.com/BonnierNews/local-esi#readme",
"directories": {
"lib": "lib",
"test": "test"
},
"dependencies": {
"ent": "^2.2.0"
}
}