forked from Masquerade-Circus/gnome-timezones-extension
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
48 lines (48 loc) · 1.7 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
{
"name": "gnome-timezones-extension",
"version": "0.0.0",
"description": "Show multiple clock timezones in the panel",
"main": "extension.js",
"repository": "[email protected]:Masquerade-Circus/gnome-timezones-extension.git",
"license": "Apache-2.0",
"author": "Masquerade <[email protected]>",
"private": false,
"keywords": [
"gnome",
"gnome-shell",
"extension",
"clock",
"timezones",
"multiple"
],
"scripts": {
"dev:source": "cross-env NODE_ENV=development node rollupSource.js",
"build:source": "cross-env NODE_ENV=production node rollupSource.js",
"watch-log": "journalctl -f -o cat /usr/bin/gnome-shell",
"enable": "gnome-extensions enable [email protected]",
"disable": "gnome-extensions disable [email protected]",
"restart": "gnome-shell --replace &",
"compile": "glib-compile-schemas schemas/",
"zip": "zip -r [email protected] schemas/* extension.js metadata.json",
"build": "yarn build:source && yarn compile && yarn zip"
},
"dependencies": {},
"devDependencies": {
"@rollup/plugin-buble": "^0.21.0",
"@rollup/plugin-json": "^4.0.2",
"babel-eslint": "^10.0.3",
"cross-env": "^7.0.0",
"eslint": "^6.8.0",
"eslint-plugin-gjs": "bartlibert/eslint-plugin-gjs",
"eslint-plugin-sonarjs": "^0.5.0",
"rollup": "^1.29.0",
"rollup-plugin-async": "^1.2.0",
"rollup-plugin-commonjs": "^10.1.0",
"rollup-plugin-filesize": "^6.2.1",
"rollup-plugin-includepaths": "^0.2.3",
"rollup-plugin-node-globals": "^1.4.0",
"rollup-plugin-node-resolve": "^5.2.0",
"rollup-plugin-progress": "^1.1.2",
"rollup-plugin-size-snapshot": "^0.10.0"
}
}