-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
27 lines (27 loc) 路 763 Bytes
/
Copy pathpackage.json
File metadata and controls
27 lines (27 loc) 路 763 Bytes
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
{
"name": "create-express",
"version": "1.0.2",
"description": "Express templating cli application.",
"main": "app.js",
"repository": "git@github.com:FrancooHM/create-express.git",
"author": "Franco Rabaglia <francoo.hd@gmail.com>",
"license": "MIT",
"bin": {
"create-express": "./app.js"
},
"scripts": {
"dev": "nodemon --exec \"npm start\"",
"start": "node app.js"
},
"dependencies": {
"babel-cli": "^6.24.1",
"babel-preset-es2015": "^6.24.1",
"babel-preset-stage-0": "^6.24.1",
"chalk": "^1.1.3",
"char-spinner": "^1.0.1",
"child_process": "^1.0.2",
"commander": "^2.9.0",
"ncp": "^2.0.0",
"util": "^0.10.3"
}
}