ua-parser-js 0.7.30 → 0.7.32
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Potentially problematic release.
This version of ua-parser-js might be problematic. Click here for more details.
- package/dist/ua-parser.min.js +2 -2
- package/dist/ua-parser.pack.js +2 -2
- package/package.json +8 -2
- package/readme.md +72 -21
- package/src/ua-parser.js +33 -25
- package/.github/FUNDING.yml +0 -12
- package/.github/workflows/run-test.yml +0 -17
- package/.jshintrc +0 -3
- package/.travis.yml +0 -18
- package/bower.json +0 -17
- package/package.js +0 -12
- package/security.md +0 -5
- package/test/browser-test.json +0 -1467
- package/test/cpu-test.json +0 -210
- package/test/device-test.json +0 -2915
- package/test/engine-test.json +0 -155
- package/test/mediaplayer-test.json +0 -582
- package/test/os-test.json +0 -1118
- package/test/test.js +0 -159
@@ -1,17 +0,0 @@
|
|
1
|
-
name: ua-parser-js-run-test
|
2
|
-
|
3
|
-
on: [push, pull_request]
|
4
|
-
|
5
|
-
jobs:
|
6
|
-
run-test:
|
7
|
-
runs-on: ubuntu-latest
|
8
|
-
strategy:
|
9
|
-
matrix:
|
10
|
-
arch: [amd64, ppc64le]
|
11
|
-
steps:
|
12
|
-
- uses: actions/checkout@v2
|
13
|
-
- uses: actions/setup-node@v2
|
14
|
-
- name: Run the test
|
15
|
-
run: |
|
16
|
-
npm install
|
17
|
-
npm run test-ci
|
package/.jshintrc
DELETED
package/.travis.yml
DELETED
package/bower.json
DELETED
@@ -1,17 +0,0 @@
|
|
1
|
-
{
|
2
|
-
"name": "ua-parser-js",
|
3
|
-
"version": "0.7.30",
|
4
|
-
"authors": [
|
5
|
-
"Faisal Salman <f@faisalman.com>"
|
6
|
-
],
|
7
|
-
"private": false,
|
8
|
-
"main": "src/ua-parser.js",
|
9
|
-
"ignore": [
|
10
|
-
"build",
|
11
|
-
"node_modules",
|
12
|
-
"bower_components",
|
13
|
-
"test",
|
14
|
-
"tests"
|
15
|
-
],
|
16
|
-
"dependencies": {}
|
17
|
-
}
|
package/package.js
DELETED
@@ -1,12 +0,0 @@
|
|
1
|
-
Package.describe({
|
2
|
-
name: 'faisalman:ua-parser-js',
|
3
|
-
version: '0.7.30',
|
4
|
-
summary: 'Lightweight JavaScript-based user-agent string parser',
|
5
|
-
git: 'https://github.com/faisalman/ua-parser-js.git',
|
6
|
-
documentation: 'readme.md'
|
7
|
-
});
|
8
|
-
|
9
|
-
Package.onUse(function (api) {
|
10
|
-
api.addFiles("src/ua-parser.js");
|
11
|
-
api.export("UAParser");
|
12
|
-
});
|