-
Notifications
You must be signed in to change notification settings - Fork 6
/
package.json
64 lines (64 loc) · 1.99 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
{
"name": "generator-helm-chart",
"version": "0.6.26",
"description": "yeoman generator rancher 2 helm charts",
"keywords": [
"yeoman-generator",
"generator",
"yo",
"yeoman"
],
"main": "generators/app/index.js",
"files": [
"generators"
],
"scripts": {
"build": "npm run test && babel src -d generators",
"clean": "git clean -fXd -e \\!node_modules -e \\!node_modules/**/*",
"ejslint": "ejslint $(find generators -type f)",
"format": "prettier --write ./src/**/*.js",
"link": "npm link && npm link generator-helm-chart",
"lint": "npm run format && npm run ejslint && eslint ./",
"lint:fix": "npm run format && npm run ejslint && eslint --fix ./",
"prepublish": "npm run clean && npm run build",
"start": "npm run clean && npm run build && yo --destination=demo helm-chart",
"start:config": "npm run build && yo --destination=demo helm-chart:config",
"start:workload": "npm run build && yo --destination=demo helm-chart:workload",
"test": "npm run lint",
"unlink": "npm unlink generator-helm-chart"
},
"dependencies": {
"fs-extra": "^7.0.0",
"generator-github-project": "^0.2.8",
"idempotent-babel-polyfill": "^7.0.0",
"js-yaml": "^3.12.0",
"lodash": "^4.17.11",
"mod-inline": "0.0.2",
"yeoman-generator": "^1.0.0",
"yo-base-prompts": "^0.1.6",
"yo-option-or-prompt": "^0.2.0"
},
"devDependencies": {
"@babel/cli": "^7.1.2",
"@babel/core": "^7.1.2",
"@babel/preset-env": "^7.1.0",
"babel-preset-everything": "^0.1.2",
"ejs-lint": "^0.3.0",
"eslint": "^5.6.1",
"eslint-config-jam": "^0.1.6",
"prettier": "^1.14.3",
"yo": "^2.0.5"
},
"author": {
"name": "Jam Risser",
"email": "[email protected]",
"url": "https://codejam.ninja"
},
"homepage": "https://github.com/codejamninja/generator-helm-chart",
"license": "MIT",
"repository": "https://github.com/codejamninja/generator-helm-chart",
"eslintIgnore": [
"generators",
"demo"
]
}