forked from faisalman/ua-parser-js
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
78 lines (78 loc) · 2.3 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
78
{
"name": "@51degrees/ua-parser-js",
"version": "2.0.4",
"description": "User-Agent and User Agent Client Hints parser. Supports the latest Chromium browsers and Apple model detection.",
"download": "https://raw.github.com/51Degrees/ua-parser-js/main/lib/ua-parser.min.js",
"main": "lib/ua-parser.js",
"types": "lib/types/UAParser.d.ts",
"repository": "github:51Degrees/ua-parser-js",
"homepage": "https://51degrees.github.io/ua-parser-js/",
"demo": "https://51Degrees.github.io/ua-parser-js",
"license": "MIT",
"devDependencies": {
"@babel/cli": "^7.20.7",
"@babel/preset-env": "^7.20.2",
"@babel/preset-typescript": "^7.18.6",
"@rollup/plugin-babel": "^6.0.3",
"@rollup/plugin-node-resolve": "^15.0.1",
"@rollup/plugin-terser": "^0.2.0",
"@rollup/plugin-typescript": "^10.0.1",
"@types/jest": "^29.2.4",
"babel-plugin-add-module-exports": "^1.0.4",
"cross-env": "^7.0.3",
"dotenv": "^16.0.3",
"jest": "^29.3.1",
"jest-environment-jsdom": "^29.3.1",
"jest-puppeteer": "^6.2.0",
"npm-run-all": "^4.1.5",
"prettier": "^2.8.1",
"puppeteer": "^19.5.0",
"rimraf": "^3.0.2",
"rollup": "^2.78",
"ts-jest": "^29.0.3",
"tslint": "^6.1.3",
"tslint-config-prettier": "^1.18.0",
"typescript": "^4.9.4"
},
"scripts": {
"clean": "rimraf lib",
"declarations": "tsc -p tsconfig.json",
"server:start": "node server.js fg",
"server:stop": "node server.stop.js fg",
"test": "jest --config jestconfig.json --runInBand --verbose --detectOpenHandles --forceExit",
"format": "prettier --write \"src/**/*.ts\"",
"lint": "tslint -p tsconfig.json",
"build:bundles": "cross-env BABEL_ENV=esmBundled rollup -c",
"build": "npm-run-all -l clean -p build:bundles declarations",
"start": "node server.js"
},
"files": [
"lib"
],
"engines": {
"node": ">=10.0.0"
},
"bugs": {
"url": "https://github.com/51Degrees/ua-parser-js/issues"
},
"directories": {
"lib": "lib"
},
"keywords": [
"device detection",
"user agent client hints",
"client hints",
"ua-ch",
"user-agent",
"uaparser",
"parser",
"browser",
"os",
"device",
"cpu",
"ua-parser-js",
"detection",
"51Degrees"
],
"author": "Roman Sertsov <[email protected]>"
}