-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpackage.json
78 lines (78 loc) · 1.61 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
{
"name": "generator-svelte",
"version": "2.2.10",
"description": "Yeoman generator generating a Svelte.js app",
"homepage": "https://github.com/Samuel-Martineau/generator-svelte/",
"contributors": [
{
"name": "doudou8",
"email": "cvdkhoa@gmail.com",
"url": "https://dcodes.dev"
},
{
"name": "samuel_martineau",
"email": "samumartineau@gmail.com",
"url": "https://smartineau.me"
}
],
"files": [
"generators",
"common"
],
"main": "generators/app/index.js",
"keywords": [
"svelte",
"svelte.js",
"generator",
"yo",
"yeoman",
"yeoman-generator"
],
"devDependencies": {
"coveralls": "^3.0.7",
"eslint": "^6.6.0",
"eslint-config-prettier": "^6.6.0",
"eslint-config-xo": "^0.27.2",
"eslint-plugin-prettier": "^3.1.1",
"execa": "^4.0.3",
"husky": "^3.0.9",
"lint-staged": "^9.4.3",
"mocha": "^8.0.1",
"prettier": "^1.19.1",
"yeoman-assert": "^3.1.0",
"yeoman-test": "^1.7.0"
},
"engines": {
"npm": ">= 4.0.0"
},
"dependencies": {
"chalk": "^2.1.0",
"ejs": "^3.1.3",
"generator-license": "^5.4.0",
"normalize-url": "^5.0.0",
"urlize": "^0.2.1",
"yeoman-generator": "^2.0.1",
"yosay": "^2.0.1"
},
"lint-staged": {
"*.js": [
"eslint --fix",
"git add"
],
"*.json": [
"prettier --write",
"git add"
]
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"scripts": {
"pretest": "eslint .",
"test": "mocha"
},
"repository": "Samuel-Martineau/generator-svelte",
"license": "Apache-2.0"
}