forked from Hashnode/mern-cli
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
107 lines (107 loc) · 2.38 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
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
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
{
"name": "mern-cli",
"version": "3.0.1",
"description": "A cli for generating MERN boilerplate",
"main": "index.js",
"watch": {
"compile": "src/**/*.js"
},
"scripts": {
"compile": "babel --presets es2015,stage-0 -d lib/ src/",
"lint": "eslint . --ignore-path .gitignore",
"lint:staged": "eslint-staged",
"prepublish": "npm run compile",
"pretest": "npm run lint",
"test": "ava tests/*.js",
"watch": "npm-watch"
},
"pre-commit": "lint:staged && npm run test",
"eslintConfig": {
"parser": "babel-eslint",
"extends": "airbnb-base",
"env": {
"node": true,
"es6": true,
"shelljs": true
},
"parserOptions": {
"ecmaVersion": 6,
"sourceType": "module"
},
"rules": {
"import/no-unresolved": 2,
"global-require": 0,
"comma-dangle": [
2,
"always-multiline"
],
"indent": [
2,
4,
{
"SwitchCase": 1
}
],
"max-len": 0,
"no-console": 0,
"prefer-template": 2,
"no-use-before-define": 0,
"newline-per-chained-call": 0,
"arrow-body-style": [
2,
"as-needed"
]
}
},
"engines": {
"node": ">=4"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Hashnode/mern-cli.git"
},
"keywords": [
"cli",
"mern",
"isomorphic",
"boilerplate",
"react",
"redux",
"react-router",
"express",
"mongo"
],
"author": "Mayank Chandola <[email protected]>, Prashant Abhishek <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/Hashnode/mern-cli/issues"
},
"homepage": "https://github.com/Hashnode/mern-cli#readme",
"bin": {
"mern": "./bin/mern.js",
"merng": "./bin/merng.js"
},
"dependencies": {
"chalk": "^1.1.1",
"cli-table": "^0.3.1",
"commander": "^2.9.0",
"ejs": "^2.4.1",
"elegant-spinner": "^1.0.1",
"log-update": "^1.0.2",
"shelljs": "^0.6.0",
"writefile": "^0.2.8"
},
"devDependencies": {
"ava": "^0.11.0",
"babel-cli": "^6.9.0",
"babel-eslint": "^6.0.4",
"babel-preset-es2015": "^6.9.0",
"babel-preset-stage-0": "^6.5.0",
"eslint": "^2.10.2",
"eslint-config-airbnb-base": "^3.0.1",
"eslint-plugin-import": "^1.8.0",
"lint-staged": "^0.2.2",
"npm-watch": "^0.1.4",
"pify": "^2.3.0"
}
}