forked from momi-foundation-coding/nodejs-api-cli
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
78 lines (78 loc) · 1.74 KB
/
Copy pathpackage.json
File metadata and controls
78 lines (78 loc) · 1.74 KB
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
65
66
67
68
69
70
71
72
73
74
75
76
77
78
{
"name": "nodejs-api-cli",
"version": "0.3.2",
"description": "nodejs-api-cli is a scaffold to start API for different NodeJS fraameworks. for generating nodejs application.",
"main": "src/createapp.js",
"bin": {
"nodejs-api-cli": "src/createapp.js"
},
"scripts": {
"start:dev": "babel-node src/createapp.js",
"start": "node src/createapp.js",
"build": "rm -r lib && babel src --presets minify --out-dir lib",
"lint": "eslint .",
"lint:fix": "eslint . --fix"
},
"repository": {
"type": "git",
"url": "git+https://github.com/kemboijs/nodejs-api-cli.git"
},
"keywords": [
"nodejs",
"scaffold",
"kemboijs",
"generator",
"app",
"api",
"express",
"nodejs-cli",
"nodejs-api-cli"
],
"author": "Ezrqn Kemboi <ezrqnkemboi@gmail.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/kemboijs/nodejs-api-cli/issues"
},
"homepage": "https://github.com/kemboijs/nodejs-api-cli#readme",
"files": [
"README.md",
"LICENCE",
"src/",
"lib",
"package.json"
],
"dependencies": {
"inquirer": "^7.1.0"
},
"directories": {
"test": "tests"
},
"devDependencies": {
"@babel/cli": "^7.10.1",
"@babel/core": "^7.10.1",
"@babel/node": "^7.10.1",
"@babel/preset-env": "^7.10.1",
"babel-preset-minify": "^0.5.1",
"eslint": "^6.8.0",
"eslint-config-airbnb-base": "^14.1.0",
"eslint-config-prettier": "^6.10.1",
"eslint-plugin-import": "^2.20.1",
"eslint-plugin-prettier": "^3.1.2",
"prettier": "^2.0.2"
},
"babel": {
"presets": [
[
"@babel/preset-env",
{
"targets": {
"node": "current"
}
}
],
[
"minify"
]
]
}
}