-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
77 lines (77 loc) · 2.34 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
{
"name": "@mojojs/user-agent",
"version": "0.11.4",
"description": "A powerful user-agent for Node.js and browsers",
"keywords": [
"mojojs",
"http"
],
"author": "Sebastian Riedel <[email protected]>",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/mojolicious/user-agent.js.git"
},
"bugs": {
"url": "https://github.com/mojolicious/user-agent.js/issues"
},
"homepage": "https://mojojs.org",
"scripts": {
"build": "npx tsc --build ./ && npx rollup --config rollup.config.js",
"build:clean": "npm run clean && npm run build",
"build:coverage": "npm run build && npm run coverage",
"build:lint": "npm run build && npm run lint",
"build:test": "npm run build && npm test",
"build:watch": "npm run build -- --watch",
"clean": "rm -rf tsconfig.tsbuildinfo lib dist",
"coverage": "c8 tap --disable-coverage --allow-empty-coverage test/*.js",
"coverage:ci": "c8 --reporter lcovonly tap --disable-coverage --allow-empty-coverage test/*.js",
"lint": "eslint \"test/*.js\" \"src/**/*.ts\" \"src/*.ts\"",
"lint:fix": "npm run lint -- --fix",
"prepublishOnly": "npm run build",
"publish:minor": "npm version minor && npm publish",
"publish:patch": "npm version patch && npm publish",
"test": "tap --disable-coverage --allow-empty-coverage test/*.js"
},
"exports": {
".": {
"browser": "./lib/browser.js",
"default": "./lib/node.js"
}
},
"types": "./lib/node.d.ts",
"type": "module",
"files": [
"lib/"
],
"devDependencies": {
"@mojojs/core": "^1.6.0",
"@mojojs/path": "^1.5.3",
"@rollup/plugin-node-resolve": "^15.0.0",
"@rollup/plugin-terser": "^0.4.0",
"@types/node": "^22.4.0",
"@types/tap": "^15.0.3",
"@types/tough-cookie": "^4.0.2",
"@typescript-eslint/eslint-plugin": "^6.0.0",
"c8": "^10.1.2",
"eslint": "^8.1.0",
"eslint-config-prettier": "^9.0.0",
"eslint-plugin-import": "^2.23.4",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-prettier": "^5.0.0",
"playwright": "^1.26.1",
"prettier": "^3.0.0",
"rollup": "^4.1.0",
"tap": "^21.0.1",
"typescript": "^5.0.2"
},
"engines": {
"node": ">= 18"
},
"dependencies": {
"@mojojs/dom": "^2.1.0",
"@mojojs/util": "^1.5.0",
"tough-cookie": "^4.1.2",
"undici": "^6.19.7"
}
}