ua-parser-js 0.7.28 → 0.7.33

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.
@@ -1,12 +0,0 @@
1
- # These are supported funding model platforms
2
-
3
- github: # Replace with up to 4 GitHub Sponsors-enabled usernames e.g., [user1, user2]
4
- patreon: # Replace with a single Patreon username
5
- open_collective: ua-parser-js
6
- ko_fi: # Replace with a single Ko-fi username
7
- tidelift: # Replace with a single Tidelift platform-name/package-name e.g., npm/babel
8
- community_bridge: # Replace with a single Community Bridge project-name e.g., cloud-foundry
9
- liberapay: # Replace with a single Liberapay username
10
- issuehunt: # Replace with a single IssueHunt username
11
- otechie: # Replace with a single Otechie username
12
- custom: ['https://www.paypal.me/faisalman/']
@@ -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/.travis.yml DELETED
@@ -1,18 +0,0 @@
1
- arch:
2
- - amd64
3
- - ppc64le
4
- language: node_js
5
- node_js:
6
- - stable
7
- - lts/*
8
-
9
- notifications:
10
- email: false
11
-
12
- cache:
13
- directories:
14
- - node_modules
15
-
16
- sudo: false
17
-
18
- script: npm run test-ci
package/bower.json DELETED
@@ -1,17 +0,0 @@
1
- {
2
- "name": "ua-parser-js",
3
- "version": "0.7.28",
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.28',
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
- });