-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
98 lines (98 loc) · 3.32 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
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
{
"name": "rowser",
"version": "0.6.0",
"description": "An experimental generator-based browser/os/bot detector with proxied API",
"main": "lib/rowser.js",
"module": "lib/rowser.js",
"scripts": {
"start": "npm run build:dev && npm run build:dev-server",
"appveyor:benchmark": "",
"appveyor:test": "node node_modules\\mocha\\bin\\mocha --max-old-space-size=4096 ./__tests__",
"benchmark": "node ./benchmark/index.js",
"build:dev": "webpack",
"build:production": "webpack -p --env.NODE_ENV=production",
"check:size": "size-limit",
"circleci:test": "node node_modules/mocha/bin/mocha --max-old-space-size=4096 ./__tests__",
"circleci:lint": "",
"cover": "node --max-old-space-size=4096 --harmony ./node_modules/istanbul/lib/cli.js cover node_modules/mocha/bin/_mocha -- ./__tests__",
"cover:min": "node --max-old-space-size=4096 --harmony ./node_modules/istanbul/lib/cli.js cover --report lcovonly node_modules/mocha/bin/_mocha -- ./__tests__",
"cover:local": "istanbul cover ./node_modules/mocha/bin/_mocha ./__tests__",
"cover:local:open": "node ./scripts/coverage-report-open.js",
"deps:security": "nsp check --output summary",
"deps:status": "david",
"dev-server": "webpack-dev-server --hot --inline --open",
"lint": "./node_modules/.bin/eslint ./lib --fix",
"lint-staged": "lint-staged",
"stats": "cloc . --exclude-dir=node_modules,tmp,.git",
"test": "./node_modules/.bin/mocha ./__tests__",
"test:unit": "./node_modules/.bin/mocha ./__tests__/unit.js",
"test:detection": "./node_modules/.bin/mocha ./__tests__/detection",
"travis:lint": "",
"travis:test": "npm run cover:min"
},
"repository": {
"type": "git",
"url": "git+https://github.com/everget/rowser.git"
},
"keywords": [
"detect",
"detection",
"detector",
"useragent-parser",
"browser-detection",
"rendering-engine-detection",
"os-detection",
"bot-detection",
"device-detection"
],
"author": "Alex Orekhov <alex.everget161@gmail.com> (https://github.com/everget)",
"license": "MIT",
"bugs": {
"url": "https://github.com/everget/rowser/issues"
},
"homepage": "https://github.com/everget/rowser",
"size-limit": [
{
"path": "./static/*.js",
"limit": "15kb"
}
],
"lint-staged": {
"*.js": "./node_modules/.bin/eslint --fix"
},
"pre-commit": "lint-staged",
"devDependencies": {
"babel-core": "^6.26.0",
"babel-loader": "^7.1.2",
"benchmark": "^2.1.4",
"bowser": "^1.8.0",
"chai": "^4.1.2",
"clean-webpack-plugin": "^0.1.17",
"cloc": "^2.2.0",
"codecov.io": "^0.1.6",
"coveralls": "^3.0.0",
"css-loader": "^0.28.7",
"david": "^11.0.0",
"eslint": "^4.10.0",
"eslint-config-airbnb-base": "^12.1.0",
"eslint-plugin-import": "^2.8.0",
"eslint-plugin-mocha": "^4.11.0",
"extract-text-webpack-plugin": "^3.0.1",
"html-webpack-plugin": "^2.30.1",
"istanbul": "^0.4.5",
"lint-staged": "^4.3.0",
"mocha": "^4.0.1",
"nsp": "^2.8.1",
"opn": "^5.1.0",
"platform": "^1.3.4",
"pre-commit": "^1.2.2",
"size-limit": "^0.11.6",
"snap-shot": "^2.17.0",
"style-loader": "^0.19.0",
"ua-parser-js": "^0.7.14",
"uglifyjs-webpack-plugin": "^1.0.1",
"webpack": "^3.6.0",
"webpack-dev-server": "^2.9.1",
"webpack-merge": "^4.1.0"
}
}