-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
47 lines (47 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
{
"name": "birla",
"description": "CLI tool to easily create new file-structure scaffolds from template directories.",
"version": "1.1.0",
"main": "birla.js",
"bin": {
"birla": "./index.js"
},
"files": [
"index.js",
"birla.js"
],
"scripts": {
"demo": "npm start --prefix demo",
"patch-release": "npm version patch && npm publish",
"test": "echo \"Error: no test specified\" && exit 1"
},
"keywords": [
"scaffolder",
"boiler",
"react",
"templater",
"cli",
"component",
"templating",
"copy",
"generate",
"generator",
"productivity"
],
"author": "Aditya Agarwal @itaditya (adi.surge.sh)",
"license": "MIT",
"dependencies": {
"change-case": "^3.1.0",
"commander": "^2.15.1",
"fs-extra": "^6.0.1"
},
"devDependencies": {},
"repository": {
"type": "git",
"url": "git+https://github.com/itaditya/birla.git"
},
"bugs": {
"url": "https://github.com/itaditya/birla/issues"
},
"homepage": "https://github.com/itaditya/birla#readme"
}