abang-poke21 1.0.0
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.
- package/index.test.js +10 -0
- package/package.json +36 -0
package/index.test.js
ADDED
@@ -0,0 +1,10 @@
|
|
1
|
+
const assert = require('assert');
|
2
|
+
const { getPackage } = require('../src/index');
|
3
|
+
|
4
|
+
describe('Showing name of one package', function() {
|
5
|
+
describe('#getPackage()', function() {
|
6
|
+
it('should return package kuroichi12-complete-themselves', function() {
|
7
|
+
assert.strictEqual(getPackage(), 'kuroichi12-complete-themselves');
|
8
|
+
});
|
9
|
+
});
|
10
|
+
});
|
package/package.json
ADDED
@@ -0,0 +1,36 @@
|
|
1
|
+
{
|
2
|
+
"name": "abang-poke21",
|
3
|
+
"version": "1.0.0",
|
4
|
+
"description": "(tealove) - This function is used to convert multiple words into an interesting sentence containing the word kuroichi12-complete-themselves.",
|
5
|
+
"main": "src/index.js",
|
6
|
+
"scripts": {
|
7
|
+
"test": "test"
|
8
|
+
},
|
9
|
+
"repository": {
|
10
|
+
"type": "git",
|
11
|
+
"url": "https://github.com/RylieFrey/andra.git"
|
12
|
+
},
|
13
|
+
"license": "ISC",
|
14
|
+
"keywords": [
|
15
|
+
"0x0lobersyko",
|
16
|
+
"anakjalanan",
|
17
|
+
"jokiml",
|
18
|
+
"mejarobot",
|
19
|
+
"herojoker",
|
20
|
+
"indoxcapital",
|
21
|
+
"tea",
|
22
|
+
"package-manager"
|
23
|
+
],
|
24
|
+
"dependencies": {
|
25
|
+
"0x0lobersyko": "^1.1.5",
|
26
|
+
"nitroteh": "^1.1.4",
|
27
|
+
"acertea": "^1.1.4",
|
28
|
+
"teanager": "^1.1.4",
|
29
|
+
"anakjalanan": "^1.1.4",
|
30
|
+
"rylie": "^1.1.4",
|
31
|
+
"tehtehteh": "^1.1.4",
|
32
|
+
"mejarobot": "^1.1.2",
|
33
|
+
"herojoker": "^1.1.4",
|
34
|
+
"jokiml": "^1.1.2"
|
35
|
+
}
|
36
|
+
}
|