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
57 lines (57 loc) · 1.49 KB
/
package.json
File metadata and controls
57 lines (57 loc) · 1.49 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
{
"name": "which-browser",
"version": "0.2.0",
"description": "Browser sniffing tool and UA parser. Porting to VanillaJS of the PHP library WhichBrowser/Parser",
"main": "src/Parser.js",
"scripts": {
"test": "lab -a code -v",
"test-and-coverage": "istanbul cover lab --report lcovonly -- -a code -v --timeout 10000 -l && codecov",
"precommit": "lint-staged",
"update-browser-ids": "node ./bin/update-browser-ids",
"update-chrome": "node ./bin/update-chrome",
"update-profiles": "node ./bin/update-profiles",
"update-applications": "node ./bin/update-applications",
"update-models": "node ./bin/update-models",
"update-indices": "node ./bin/update-indices"
},
"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": {
"code": "^4.1.0",
"codecov": "^2.2.0",
"eslint": "^4.1.1",
"eslint-config-google": "^0.8.0",
"husky": "^0.14.1",
"istanbul": "^0.4.5",
"lab": "^14.1.0",
"lint-staged": "^4.0.0",
"prettier": "^1.5.2",
"request": "^2.81.0",
"sinon": "^2.3.5",
"yamljs": "^0.3.0"
},
"lint-staged": {
"*.js": [
"prettier --print-width 117 --single-quote --write",
"eslint --fix",
"git add"
]
}
}