-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
51 lines (51 loc) · 986 Bytes
/
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
{
"name": "create-express-template",
"version": "1.1.0",
"description": "Create an express app template with various options",
"bin": {
"create-express-template": "src/cli.js"
},
"scripts": {
"test": "ava"
},
"author": "Govind S",
"license": "MIT",
"homepage": "https://github.com/dopecodez/create-express-template#readme",
"repository": {
"type": "git",
"url": "https://github.com/dopecodez/create-express-template"
},
"files": [
"src"
],
"keywords": [
"cli-app",
"cli",
"npx",
"express",
"create",
"template",
"generator",
"inversify",
"inversion-of-control",
"typeorm",
"sequelize"
],
"dependencies": {
"edit-json-file": "^1.4.1",
"execa": "^4.0.3",
"inquirer": "^7.3.3",
"log-symbols": "^3.0.0",
"meow": "^6.0.0"
},
"devDependencies": {
"eslint": "^7.7.0",
"ava": "^3.8.2"
},
"ava": {
"files": [
"test/*"
],
"timeout": "1m"
}
}