-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
35 lines (35 loc) · 864 Bytes
/
package.json
File metadata and controls
35 lines (35 loc) · 864 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
29
30
31
32
33
34
35
{
"name": "userscript-header-from-package.json",
"version": "0.0.1",
"description": "generate a userscript header from data found in package.json",
"main": "index.js",
"bin": {
"userscript-header-from-package-json": "index.js"
},
"scripts": {
"test": "cd test && lab ."
},
"repository": {
"type": "git",
"url": "git://github.com/insertmode/userscript-header-from-package.json.git"
},
"keywords": [
"userscript",
"userscripts",
"npm",
"header",
"comment"
],
"author": "Jan Bölsche <jan@lagomorph.de>",
"license": "ISC",
"bugs": {
"url": "https://github.com/insertmode/userscript-header-from-package.json/issues"
},
"homepage": "https://github.com/insertmode/userscript-header-from-package.json",
"dependencies": {
"ejs": "^1.0.0"
},
"devDependencies": {
"lab": "^3.2.1"
}
}