-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathpackage.json
81 lines (81 loc) · 2.1 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
79
80
81
{
"name": "ua-parser2",
"version": "0.5.1",
"description": "An improved user agent parser.",
"keywords": [
"Parser",
"User-Agent",
"ua-parser"
],
"homepage": "https://github.com/commenthol/ua-parser2#readme",
"bugs": {
"url": "https://github.com/commenthol/ua-parser2/issues"
},
"repository": {
"type": "git",
"url": "git+ssh://[email protected]/commenthol/ua-parser2.git"
},
"license": "(MIT OR Apache-2.0)",
"author": "",
"maintainers": [
"commenthol <[email protected]>"
],
"contributors": [
"Tobie Langel <[email protected]> (http://tobielangel.com)",
"Lindsey Simon <[email protected]> (http://www.idreamofuni.com)",
"Philip Tellis <[email protected]> (http://bluesmoon.info)",
"Dave Olsen <[email protected]> (http://dmolsen.com)",
"commenthol <[email protected]>"
],
"main": "./js/index",
"directories": {
"doc": "doc"
},
"scripts": {
"all": "npm run lint && npm t",
"benchmark": "cd benchmark && npm i && node run.js",
"clean": "rimraf node_modules *.tgz",
"lint": "eslint 'js/**/*.js'",
"regen": "node ./js/bin/regen -c",
"test": "cd js && mocha test/load/*.mocha.js && mocha",
"update": "cp test_resources/new-tests.json test_resources/tests.json"
},
"eslintConfig": {
"extends": "standard",
"rules": {
"one-var": 0
}
},
"mocha": {
"reporter": "min"
},
"dependencies": {
"js-yaml": "^4.0.0"
},
"devDependencies": {
"commander": "^6.2.1",
"eslint": "^7.18.0",
"eslint-config-standard": "^16.0.2",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^4.2.1",
"eslint-plugin-standard": "^5.0.0",
"mocha": "^8.2.1",
"safe-regex": "^2.1.1",
"shelljs": "^0.8.4",
"streamss": "^2.0.0"
},
"engines": {
"node": ">=12.0.0"
},
"licenses": [
{
"type": "MIT",
"url": "https://raw.github.com/commenthol/ua-parser2/master/js/LICENSE"
},
{
"type": "Apache-2.0",
"url": "https://raw.github.com/commenthol/ua-parser2/master/js/LICENSE"
}
]
}