-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
39 lines (39 loc) · 1.24 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
{
"author": "Luke Wilson <[email protected]>",
"bugs": {
"url": "https://github.com/lukesrw/parseUserAgent/issues"
},
"dependencies": {},
"description": "parseUserAgent is a function that takes a user agent and returns the browser name and version (and soon the operating system and version).",
"devDependencies": {
"@types/chai": "^4.2.18",
"@types/mocha": "^8.2.2",
"@types/node": "^14.14.44",
"chai": "^4.3.4",
"mocha": "^8.4.0"
},
"homepage": "https://github.com/lukesrw/parseUserAgent#readme",
"keywords": [
"useragent",
"useragentparser",
"useragent-parser",
"user-agent",
"user-agent-parser",
"parseuseragent"
],
"license": "GPL-3.0",
"main": "./dist/js/index",
"name": "parse-user-agent",
"repository": {
"type": "git",
"url": "git+ssh://[email protected]/lukesrw/parseUserAgent.git"
},
"scripts": {
"build": "node clean && tsc && node tools/compress",
"test": "npm run build && node tools/test",
"watch-after-start": "node dist/js",
"watch-end": "node clean && node tools/compress",
"watch-start": "npm run build"
},
"version": "1.1.2"
}