-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
55 lines (55 loc) · 1.14 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
{
"name": "create-react-component",
"version": "1.0.8",
"description": "Scaffold React components via CLI",
"main": "index.js",
"license": "MIT",
"author": "Nico Troia",
"homepage": "https://github.com/nicotroia/create-react-component#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/nicotroia/create-react-component.git"
},
"bin": {
"create-react-component": "index.js"
},
"scripts": {
"test": "jest",
"lint": "./node_modules/.bin/eslint ./src",
"lint:fix": "./node_modules/.bin/eslint --fix ./src"
},
"engines": {
"node": ">= 6"
},
"keywords": [
"react",
"redux",
"component",
"scaffold"
],
"dependencies": {
"mkdirp": "^0.5.1",
"prompts": "^2.1.0",
"sade": "^1.6.0",
"templite": "^1.1.0"
},
"devDependencies": {
"eslint": "^6.0.1"
},
"eslintConfig": {
"env": {
"es6": true,
"node": true
},
"extends": "eslint:recommended",
"rules": {
"no-console": 0,
"no-cond-assign": 0,
"no-inner-declarations": 0
}
},
"eslintIgnore": [
"**/node_modules/**",
"**/templates/**"
]
}