This repository has been archived by the owner on Jan 12, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 8
/
package.json
64 lines (64 loc) · 1.58 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
56
57
58
59
60
61
62
63
64
{
"name": "module-init",
"description": "Create a new node module with all the right stuff.",
"version": "1.5.0",
"author": "Nate Goldman <[email protected]>",
"bin": {
"module-init": "./bin/cli.js"
},
"bugs": {
"url": "https://github.com/ungoldman/module-init/issues"
},
"dependencies": {
"async": "^0.9.0",
"camel-case": "^1.1.1",
"chalk": "^1.0.0",
"cliclopts": "^1.1.0",
"fixpack": "^2.2.0",
"git-config": "0.0.6",
"inquirer": "^0.8.2",
"minimist": "^1.1.1",
"mkdirp": "^0.5.1",
"mustache": "^2.1.3",
"shelljs": "^0.4.0"
},
"devDependencies": {
"gh-pages": "^0.11.0",
"live-server": "^1.1.0",
"npm-run-all": "^3.1.0",
"rimraf": "^2.4.2",
"sitedown": "^3.1.0",
"snazzy": "^5.0.0",
"standard": "^6.0.0",
"tap-spec": "^4.0.2",
"tape": "^4.0.0",
"win-spawn": "^2.0.0"
},
"homepage": "https://github.com/ungoldman/module-init",
"keywords": [
"automate",
"automation",
"create",
"creation",
"init",
"module",
"package"
],
"license": "ISC",
"main": "index.js",
"repository": {
"type": "git",
"url": "git+https://github.com/ungoldman/module-init.git"
},
"scripts": {
"gh-pages": "npm run site && gh-pages -d site",
"pretest": "standard | snazzy",
"serve:site": "live-server site",
"serve:watch": "npm run site:html -- -w",
"site": "run-s site:*",
"site:clean": "rm -rf site",
"site:html": "sitedown -b site -l docs/layout.html",
"start": "npm-run-all site --parallel serve:*",
"test": "tape test/*.js | tap-spec"
}
}