This repository has been archived by the owner on May 25, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 15
/
Copy pathpackage.json
105 lines (105 loc) · 2.02 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
{
"name": "@inrupt/generator-solid-react",
"version": "0.7.2",
"description": "Solid React Application Generator",
"homepage": "https://solidproject.org",
"contributors": [
{
"name": "Justin Bingham",
"email": "[email protected]"
},
{
"name": "James Martin",
"email": "[email protected]"
},
{
"name": "Pablo Rodriguez",
"email": ""
},
{
"name": "Jairo Campos",
"email": ""
},
{
"name": "Arne Hassel",
"email": "[email protected]"
},
{
"name": "Angel Araya",
"email": "[email protected]"
},
{
"name": "Eliamar Agüero",
"email": "[email protected]"
}
],
"files": [
"generators",
"CONTRIBUTING.md"
],
"main": "generators/index.js",
"keywords": [
"solid",
"generator",
"react",
"yeoman-generator"
],
"devDependencies": {
"eslint": "^5.9.0",
"eslint-config-prettier": "^3.3.0",
"eslint-config-xo": "^0.25.0",
"eslint-plugin-prettier": "^3.0.0",
"husky": "^1.2.0",
"jest": "^24.8.0",
"lint-staged": "^8.1.0",
"prettier": "^1.15.2",
"yeoman-assert": "^3.1.0",
"yeoman-test": "^1.7.0"
},
"engines": {
"npm": ">= 4.0.0"
},
"dependencies": {
"chalk": "^2.1.0",
"figlet": "^1.2.1",
"glob": "^7.1.3",
"voca": "^1.4.0",
"yeoman-generator": "^2.0.1",
"yosay": "^2.0.1"
},
"jest": {
"testEnvironment": "node"
},
"lint-staged": {
"*.js": [
"eslint --fix",
"git add"
],
"*.json": [
"prettier --write",
"git add"
]
},
"eslintConfig": {
"extends": [
"xo",
"prettier"
],
"env": {
"jest": true,
"node": true
},
"rules": {
"prettier/prettier": "error"
},
"plugins": [
"prettier"
]
},
"scripts": {
"pretest": "eslint .",
"test": "jest"
},
"repository": "https://github.com/inrupt/generator-solid-react.git",
"license": "MIT"
}