-
Notifications
You must be signed in to change notification settings - Fork 103
/
package.json
52 lines (52 loc) · 1.25 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
48
49
50
51
52
{
"name": "nodebootstrap",
"description": "Node/Express.js project bootstrapper loaded with best-practices",
"version": "4.5.0",
"publishConfig": {
"registry": "https://registry.npmjs.org/"
},
"repository": {
"type": "git",
"url": "https://github.com/inadarei/nodebootstrap"
},
"author": "Irakli Nadareishvili (http://freshblurbs.com)",
"contributors": [],
"bin": {
"nodebootstrap": "./nodebootstrap"
},
"engines": {
"node": ">=10.0"
},
"dependencies": {
"bluebird": "^3.5.1",
"chalk": "^4.1.0",
"extract-zip": "^2.0.1",
"fs-extra": "^9.1.0",
"get-port": "^5.1.1",
"minimist": "^1.2.0",
"ncp": "^2.0.0",
"readline-sync": "^1.4.7",
"request": "^2.48.0"
},
"keywords": [
"node",
"express",
"boilerplate",
"kit",
"bootstrap",
"best practices"
],
"scripts": {
"start": "nodebootstrap",
"pretest": "node_modules/eslint/bin/eslint.js nodebootstrap",
"test": "mocha --bail test/",
"test-cov": "node_modules/istanbul/lib/cli.js cover node_modules/mocha/bin/_mocha -- --reporter dot test/ test/ acceptance/"
},
"license": "MIT",
"devDependencies": {
"chai": "^4.1.2",
"eslint": "^7.22.0",
"istanbul": "^0.4.5",
"mocha": "^8.3.2"
}
}