forked from WhichBrowser/Parser-JavaScript
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
67 lines (67 loc) · 1.91 KB
/
package.json
File metadata and controls
67 lines (67 loc) · 1.91 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
60
61
62
63
64
65
66
67
{
"name": "which-browser",
"version": "0.7.0",
"description": "Browser sniffing tool and UA parser. Browser sniffing gone too far — A useragent parser library for JavaScript",
"main": "src/Parser.js",
"types": "which-browser.d.ts",
"scripts": {
"pre-commit": "lint-staged",
"test": "lab -a code -v",
"test-and-coverage": "istanbul cover lab --report lcovonly -- -a code -v --timeout 10000 -l",
"lint": "eslint --quiet .",
"update-applications": "node ./bin/update-applications",
"update-browser-ids": "node ./bin/update-browser-ids",
"update-chrome": "node ./bin/update-chrome",
"update-indices": "node ./bin/update-indices",
"update-models": "node ./bin/update-models",
"update-profiles": "node ./bin/update-profiles",
"update-regexes": "node ./bin/update-regexes",
"update-all": "npm run update-applications && npm run update-browser-ids && npm run update-chrome && npm run update-indices && npm run update-models && npm run update-profiles && npm run update-regexes"
},
"engines": {
"node": ">=6.0.0"
},
"repository": {
"type": "git",
"url": "https://github.com/mariotsi/WhichBrowser-js.git"
},
"keywords": [
"browser",
"sniffing",
"user-agent",
"useragent",
"node",
"ua",
"parser",
"whichbrowser"
],
"author": "Simone Mariotti",
"license": "MIT",
"devDependencies": {
"codacy-coverage": "^3.4.0",
"code": "^4.1.0",
"codecov": "^3.1.0",
"eslint": "^5.12.1",
"eslint-config-google": "^0.8.0",
"husky": "^2.4.1",
"istanbul": "^0.4.5",
"lab": "^14.3.2",
"lint-staged": "^8.1.0",
"prettier": "^1.11.1",
"request": "^2.83.0",
"sinon": "^2.4.1",
"yamljs": "^0.3.0"
},
"lint-staged": {
"*.js": [
"prettier --print-width 117 --single-quote --write",
"eslint --fix",
"git add"
]
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
}
}