-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
59 lines (59 loc) · 1.55 KB
/
package.json
File metadata and controls
59 lines (59 loc) · 1.55 KB
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
{
"name": "@maxmind/device-tracking",
"version": "0.1.0",
"description": "MaxMind Device Tracking Add-On",
"license": "Apache-2.0 OR MIT",
"author": "MaxMind",
"type": "module",
"main": "dist/src/index.js",
"types": "dist/src/index.d.ts",
"exports": {
".": {
"types": "./dist/src/index.d.ts",
"import": "./dist/src/index.js"
}
},
"repository": {
"type": "git",
"url": "https://github.com/maxmind/device-tracking.git"
},
"bugs": {
"url": "https://github.com/maxmind/device-tracking/issues"
},
"homepage": "https://github.com/maxmind/device-tracking#readme",
"keywords": [
"maxmind",
"device",
"tracking"
],
"files": [
"dist",
"LICENSE-APACHE",
"LICENSE-MIT"
],
"publishConfig": {
"access": "public"
},
"scripts": {
"build": "rm -rf dist && tsc",
"lint": "eslint . && tsc --noEmit",
"prettier:ts": "prettier --parser typescript --write 'src/**/*.ts'",
"prettier:ci": "prettier --parser typescript --list-different 'src/**/*.ts'",
"test": "NODE_OPTIONS='--experimental-vm-modules' jest",
"test:watch": "NODE_OPTIONS='--experimental-vm-modules' jest --watch",
"prepublishOnly": "pnpm run build"
},
"devDependencies": {
"@eslint/js": "^10.0.1",
"@jest/globals": "^30.0.0",
"eslint": "^10.0.0",
"eslint-config-prettier": "^10.0.1",
"globals": "^17.3.0",
"jest": "^30.0.0",
"jest-environment-jsdom": "^30.0.0",
"prettier": "^3.0.0",
"ts-jest": "^29.1.0",
"typescript": "^6.0.2",
"typescript-eslint": "^8.5.0"
}
}