-
Notifications
You must be signed in to change notification settings - Fork 15
/
Copy pathpackage.json
42 lines (42 loc) · 1.2 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
{
"name": "create-js-project",
"version": "1.0.0",
"description": "Set up a JavaScript project by running one command.",
"main": "index.js",
"scripts": {
"start": "node ./bin/create-js-project.js",
"build-docs": "node ./docs_gen/genDocs.js",
"lint": "node ./node_modules/eslint/bin/eslint . --ext .js --config .eslintrc.json",
"lint-fix": "node ./node_modules/eslint/bin/eslint . --ext .js --fix --config .eslintrc.json"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Chalarangelo/create-js-project.git"
},
"keywords": [
"javascript",
"project",
"builder"
],
"author": "Angelos Chalaris ([email protected])",
"license": "MIT",
"bugs": {
"url": "https://github.com/Chalarangelo/create-js-project/issues"
},
"homepage": "https://github.com/Chalarangelo/create-js-project#readme",
"dependencies": {
"chalk": "^2.4.2",
"fs-extra": "^7.0.1",
"inquirer": "^6.2.1",
"minimist": "^1.2.0"
},
"bin": {
"create-js-project": "./bin/create-js-project.js"
},
"preferGlobal": true,
"devDependencies": {
"eslint": "^5.12.0",
"eslint-config-airbnb-base": "^13.1.0",
"eslint-plugin-import": "^2.14.0"
}
}