Compare View

switch
from
...
to
 
Commits (2)

Changes

Showing 2 changed files Inline Diff

1 "use strict"; 1 "use strict";
2 2
3 const fs = require('fs'); 3 const fs = require('fs');
4 4
5 let configFile = process.cwd() + "/config.json"; 5 let configFile = process.cwd() + "/config.json";
6 6
7 if (!fs.existsSync(configFile)) { 7 if (!fs.existsSync(configFile)) {
8 console.trace('Config file not found. Terminating'); 8 console.trace('Config file not found. Terminating');
9 setImmediate(function() { 9 setImmediate(function() {
10 process.exit(1); 10 process.exit(1);
11 }); 11 });
12 } 12 }
13 13
14 const config = require(configFile); 14 const config = require(configFile);
15 15
16 module.exports = config; 16 module.exports = config;
17 17
1 { 1 {
2 "name": "komodo-sdk", 2 "name": "komodo-sdk",
3 "version": "1.0.1", 3 "version": "1.0.2",
4 "description": "SDK for Komodo", 4 "description": "SDK for Komodo",
5 "main": "index.js", 5 "main": "index.js",
6 "scripts": { 6 "scripts": {
7 "test": "mocha", 7 "test": "mocha",
8 "postversion": "git push && git push --tags" 8 "postversion": "git push && git push --tags"
9 }, 9 },
10 "repository": { 10 "repository": {
11 "type": "git", 11 "type": "git",
12 "url": "git@gitlab.kodesumber.com:adhisimon/komodo-sdk.git" 12 "url": "git@gitlab.kodesumber.com:adhisimon/komodo-sdk.git"
13 }, 13 },
14 "keywords": [ 14 "keywords": [
15 "ppob", 15 "ppob",
16 "payment", 16 "payment",
17 "komodo" 17 "komodo"
18 ], 18 ],
19 "author": "Adhidarma Hadiwinoto <gua@adhisimon.org>", 19 "author": "Adhidarma Hadiwinoto <gua@adhisimon.org>",
20 "license": "ISC" 20 "license": "ISC"
21 } 21 }
22 22