1
Fork 0
This repository has been archived on 2023-03-26. You can view files and clone it, but cannot push or open issues or pull requests.
hipchat-emoticons-for-all/firefox/build-package.py

35 lines
879 B
Python
Raw Normal View History

import json
2015-08-20 19:28:20 +01:00
import os
current_dir = os.path.dirname(os.path.realpath(__file__)) + "/"
2015-08-20 19:28:20 +01:00
with open(current_dir + "../package.json") as json_file:
project_package = json.load(json_file)
package = {}
try:
with open(current_dir + "package.json") as json_file:
package = json.load(json_file)
except:
package = {}
switcher = {
'name': 'title',
'version': 'version',
'description': 'description',
'author': 'author',
'license': 'license'
}
2015-08-20 19:28:20 +01:00
for key, value in switcher.items():
package[value] = project_package[key]
2015-10-08 12:49:24 +01:00
# Hard coded values
2015-09-22 15:54:08 +01:00
package['name'] = package['title'].replace(' ', '-').lower()
package['id'] = package['name'] + "@jetpack"
2015-10-05 16:18:41 +01:00
package['engines'] = {'fennec': "45.0", 'firefox': "45.0"}
package['main'] = 'index.js'
2015-08-20 19:28:20 +01:00
with open(current_dir + 'package.json', 'w') as file:
json.dump(package, file, indent=2, sort_keys=True)