-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathpackage.json
86 lines (86 loc) · 1.77 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
{
"name": "generator-living-atlas",
"version": "1.6.17",
"description": "A Yeoman Generator for Living Atlas Ansible Inventories",
"homepage": "https://living-atlases.gbif.org",
"author": {
"name": "Vicente J. Ruiz Jurado",
"email": "vjrj@gbif.es",
"url": "https://github.com/living-atlases/generator-living-atlas"
},
"files": [
"generators"
],
"main": "generators/index.js",
"keywords": [
"gbif",
"living-atlases",
"ALA",
"atlas",
"biodiversity",
"Atlas of Living Australia",
"yeoman-generator"
],
"devDependencies": {
"eslint": "^5.9.0",
"eslint-config-prettier": "^3.3.0",
"eslint-config-xo": "^0.25.0",
"eslint-plugin-prettier": "^3.4.1",
"husky": "^1.2.0",
"jest": "^29.7.0",
"lint-staged": "^11.1.2",
"prettier": "^1.19.1"
},
"engines": {
"npm": ">= 4.0.0"
},
"dependencies": {
"bcrypt": "^5.0.1",
"chalk": "^2.1.0",
"child_process": "^1.0.2",
"crypto": "^1.0.1",
"js-base64": "^3.6.1",
"minimatch": ">=3.0.5",
"niceware": "^1.0.7",
"onionsay": "github:theonion/onionsay",
"parse-domain": "^3.0.3",
"uuid": "^8.3.2",
"yeoman-generator": "^5.4.2",
"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": "living-atlases/generator-living-atlas",
"license": "Apache-2.0"
}