forked from bcgov/bcdk
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
66 lines (66 loc) · 1.35 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
{
"name": "@bcgov/generator-bcdk",
"version": "0.0.3-3",
"description": "BCGOV Developer Kit",
"homepage": "https://developer.gov.bc.ca",
"author": {
"name": "Clecio Varjao",
"email": "[email protected]"
},
"files": [
"generators"
],
"main": "generators/index.js",
"keywords": [
"bcgov",
"yeoman-generator",
"bcdk"
],
"devDependencies": {
"babel-eslint": "^10.0.1",
"eslint": "^5.16.0",
"eslint-config-prettier": "^3.3.0",
"eslint-config-xo": "^0.25.0",
"eslint-plugin-prettier": "^3.0.0",
"husky": "^4.2.3",
"jest": "^24.7.1",
"lint-staged": "^10.0.8",
"prettier": "^1.17.1",
"yeoman-assert": "^3.1.0",
"yeoman-test": "^1.7.0"
},
"engines": {
"node": ">= 10.15.0",
"npm": ">= 6.0.0"
},
"dependencies": {
"chalk": "^2.1.0",
"uuid": "^3.3.2",
"xml2js": "^0.4.19",
"yeoman-generator": "^2.0.1",
"yosay": "^2.0.1"
},
"jest": {
"testEnvironment": "node"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.js": [
"eslint --ext .js --fix"
],
"*.json": [
"prettier --write"
]
},
"scripts": {
"lint": "eslint \"generators/**/*.js\"",
"_pretest": "eslint .",
"test": "jest"
},
"repository": "BCDevOps/bcdk",
"license": "Apache-2.0"
}