chrisye-info 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.
Files changed (3) hide show
  1. package/README.md +17 -0
  2. package/index.js +15 -0
  3. package/package.json +14 -0
package/README.md ADDED
@@ -0,0 +1,17 @@
1
+ # chrisye-info
2
+
3
+ Data about **Chrisye** (1949-2007), Indonesia's greatest music legend.
4
+
5
+ ## Usage
6
+
7
+ ```javascript
8
+ const chrisye = require('chrisye-info');
9
+ console.log(chrisye.topSongs);
10
+ ```
11
+
12
+ ## Links
13
+
14
+ - **Website:** [chrisye.com](https://chrisye.com)
15
+ - **Discography:** [chrisye.com/diskografi](https://chrisye.com/diskografi)
16
+ - **Biography:** [chrisye.com/biografi](https://chrisye.com/biografi)
17
+ - **Videos:** [chrisye.com/video](https://chrisye.com/video)
package/index.js ADDED
@@ -0,0 +1,15 @@
1
+ module.exports = {
2
+ name: 'Chrisye',
3
+ fullName: 'Chrismansyah Rahadi',
4
+ born: '1949-09-16',
5
+ died: '2007-03-30',
6
+ genre: ['Indonesian Pop', 'Art Rock', 'Ballad', 'Jazz'],
7
+ website: 'https://chrisye.com',
8
+ albums: 22,
9
+ songs: 40,
10
+ topSongs: [
11
+ 'Lilin-Lilin Kecil', 'Badai Pasti Berlalu', 'Kala Cinta Menggoda',
12
+ 'Kisah Kasih di Sekolah', 'Andai Aku Bisa', 'Pergilah Kasih',
13
+ 'Hip Hip Hura', 'Sabda Alam', 'Galih dan Ratna', 'Merpati Putih'
14
+ ]
15
+ };
package/package.json ADDED
@@ -0,0 +1,14 @@
1
+ {
2
+ "name": "chrisye-info",
3
+ "version": "1.0.0",
4
+ "description": "Information about Chrisye (1949-2007), Indonesia's greatest music legend. Complete discography, biography, and song data.",
5
+ "main": "index.js",
6
+ "homepage": "https://chrisye.com",
7
+ "keywords": ["chrisye", "indonesian-music", "musik-indonesia", "discography", "biography", "lyrics", "legend"],
8
+ "author": "chrisye.com",
9
+ "license": "MIT",
10
+ "repository": {
11
+ "type": "git",
12
+ "url": "https://github.com/jwendyr/chrisye-tribute"
13
+ }
14
+ }