-
Notifications
You must be signed in to change notification settings - Fork 54
/
package.json
51 lines (51 loc) · 1.03 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
49
50
51
{
"name": "node-deb",
"version": "0.10.8",
"description": "Debian packaging for Node.js projects",
"author": "heartsucker <heartsucker@autistici.org>",
"bin": {
"node-deb": "./node-deb"
},
"scripts": {
"test": "./test.sh --clean-first",
"node-deb": "./node-deb -- node-deb templates/ README.md CHANGELOG.md"
},
"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",
"system v"
],
"preferGlobal": true,
"private": false,
"license": "MIT",
"homepage": "https://github.com/heartsucker/node-deb",
"files": [
"node-deb",
"templates",
"README.md",
"CHANGELOG.md",
"LICENSE"
],
"node_deb": {
"init": "none",
"entrypoints": {
"cli": "node-deb"
},
"templates": {
"control": "template-overrides/control"
}
}
}