-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
55 lines (55 loc) · 1.14 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
52
53
54
55
{
"name": "make-pkg",
"version": "0.8.0",
"author": "Michael Klement <http://same2u.net> (mklement0@gmail.com)",
"license": "MIT",
"description": "Unix CLI for initializing npm package projects and implementing a release and maintenance workflow",
"bin": {
"make-pkg": "bin/make-pkg"
},
"man": "./man/make-pkg.1",
"preferGlobal": true,
"os": [
"darwin",
"linux"
],
"homepage": "https://github.com/mklement0/make-pkg",
"repository": {
"type": "git",
"url": "https://github.com/mklement0/make-pkg.git"
},
"bugs": {
"url": "https://github.com/mklement0/make-pkg/issues"
},
"scripts": {
"test": "make test"
},
"keywords": [
"package",
"initialize",
"maintain",
"workflow",
"release",
"scaffold",
"template"
],
"devDependencies": {
"doctoc": "^0.13.0",
"json": "^9.0.3",
"marked-man": "^0.1.5",
"replace": "^0.3.0",
"semver": "^4.2.0",
"tap": "^0.6.0",
"urchin": "^0.0.5"
},
"dependencies": {
"json": "^9.0.3"
},
"net_same2u": {
"make_pkg": {
"tocOn": true,
"tocTitle": "**Contents**",
"manOn": true
}
}
}