-
Notifications
You must be signed in to change notification settings - Fork 20
Expand file tree
/
Copy pathpackage.json
More file actions
56 lines (56 loc) · 1.57 KB
/
package.json
File metadata and controls
56 lines (56 loc) · 1.57 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
{
"name": "create-nodejs-project",
"version": "1.0.2",
"description": "An npm initializer to scaffold a node project and include basic tools like lint, testing, etc.",
"main": "src/index.js",
"bin": "src/index.js",
"keywords": [
"npm",
"npm-init",
"npm-initializer",
"nodejs",
"prompt",
"command-line",
"cli",
"javascript-library"
],
"author": "Michelle Torres <hola@michelletorres.mx> (https://michelletorres.mx)",
"license": "MIT",
"private": false,
"scripts": {
"postinstall": "node --no-warnings scripts/install.js",
"setup": "node --no-warnings scripts/setup.js",
"cleanup": "node --no-warnings scripts/cleanup.js",
"start": "node --no-warnings src/index.js",
"test": "mocha",
"coveralls": "nyc npm test && nyc report --reporter=text-lcov | coveralls"
},
"engines": {
"node": ">=10.12.0"
},
"devDependencies": {
"chai": "^4.2.0",
"chai-as-promised": "^7.1.1",
"coveralls": "^3.0.2",
"eslint": "^5.12.1",
"eslint-config-airbnb": "^17.1.0",
"eslint-plugin-import": "^2.16.0",
"eslint-plugin-jsx-a11y": "^6.2.0",
"eslint-plugin-node": "^8.0.1",
"eslint-plugin-react": "^7.12.4",
"mocha": "^5.2.0",
"mocha-lcov-reporter": "^1.3.0",
"nyc": "^13.1.0"
},
"dependencies": {
"inquirer": "^6.2.1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/nmicht/create-nodejs-project.git"
},
"bugs": {
"url": "https://github.com/nmicht/create-nodejs-project/issues"
},
"homepage": "https://github.com/nmicht/create-nodejs-project#readme"
}