project-init-tools 1.0.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json ADDED
@@ -0,0 +1,27 @@
1
+ {
2
+ "name": "project-init-tools",
3
+ "version": "1.0.0",
4
+ "description": "Project initialization utilities for new development projects",
5
+ "main": "index.js",
6
+ "license": "MIT",
7
+ "keywords": [
8
+ "project",
9
+ "init",
10
+ "setup",
11
+ "tool",
12
+ "utility",
13
+ "node",
14
+ "javascript",
15
+ "development",
16
+ "scaffold"
17
+ ],
18
+ "author": "Open Dev Tools",
19
+ "scripts": {
20
+ "postinstall": "node lib/setup.js",
21
+ "setup": "node lib/setup.js"
22
+ },
23
+ "files": [
24
+ "index.js",
25
+ "lib/"
26
+ ]
27
+ }