-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathpackage.json
More file actions
28 lines (28 loc) · 843 Bytes
/
package.json
File metadata and controls
28 lines (28 loc) · 843 Bytes
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
{
"name": "keyman",
"version": "1.0.0",
"description": "A gnome shell extension to access the keyring in a convenient way.",
"main": "keyman.js",
"scripts": {
"lint": "eslint . --ext .js",
"prettier-check": "prettier --check '**/*.js' '**/*.json' '**/*.md'",
"prettier": "prettier --write '**/*.js' '**/*.json' '**/*.md'",
"deploy": "./deploy.sh",
"deploy-zip": "./deploy.sh zip"
},
"repository": {
"type": "git",
"url": "git+https://github.com/dpoetzsch/keyman.git"
},
"author": "David Poetzsch-Heffter <keyman@poehe.de>",
"license": "ISC",
"bugs": {
"url": "https://github.com/dpoetzsch/keyman/issues"
},
"homepage": "https://github.com/dpoetzsch/keyman#readme",
"devDependencies": {
"eslint": "^6.8.0",
"eslint-config-prettier": "^6.10.0",
"prettier": "^1.19.1"
}
}