forked from heartsucker/node-deb
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
42 lines (42 loc) · 973 Bytes
/
package.json
File metadata and controls
42 lines (42 loc) · 973 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
36
37
38
39
40
41
42
{
"name": "node-deb",
"version": "0.6.2",
"description": "Debian packaging for Node.js projects",
"author": "heartsucker <heartsucker@autistici.org>",
"bin": {
"node-deb": "./node-deb"
},
"scripts": {
"start": "./node-deb",
"test": "./test.sh --clean-first",
"node-deb": "./node-deb -- node-deb templates/ README.md CHANGELOG.md LICENSE"
},
"repository": {
"type": "git",
"url": "git+https://github.com/heartsucker/node-deb.git"
},
"bugs": {
"url": "https://github.com/heartsucker/node-deb/issues"
},
"keywords": [
"debian",
"ubuntu",
"deb",
"dpkg",
"package",
"packaging",
"upstart",
"systemd"
],
"preferGlobal": true,
"private": false,
"license": "MIT",
"homepage": "https://github.com/heartsucker/node-deb",
"node_deb": {
"init": "none",
"templates": {
"executable": "template-overrides/executable",
"control": "template-overrides/control"
}
}
}