-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
42 lines (42 loc) · 973 Bytes
/
package.json
File metadata and controls
42 lines (42 loc) · 973 Bytes
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": "gnrc",
"version": "3.1.1",
"description": "Node application for creating react components in a simple and fast way",
"main": "bin/index.js",
"scripts": {
"start": "node ./bin/index.js",
"test": "mocha",
"prettify": "npx prettier -w bin test",
"lint": "eslint . --fix"
},
"author": "Manuel Rodríguez",
"license": "MIT",
"bin": {
"gnrc": "./bin/index.js"
},
"dependencies": {
"readline-sync": "^1.4.10",
"update-notifier": "^5.0.1"
},
"devDependencies": {
"assert": "^2.0.0",
"eslint": "^7.23.0",
"eslint-plugin-mocha": "^8.1.0",
"mocha": "^8.2.1",
"prettier": "^2.2.1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/manuelrodgzz/gnrc.git"
},
"keywords": [
"new",
"component",
"react",
"generator"
],
"bugs": {
"url": "https://github.com/manuelrodgzz/gnrc/issues"
},
"homepage": "https://github.com/manuelrodgzz/gnrc#readme"
}