This repository has been archived by the owner on Mar 3, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
70 lines (70 loc) · 2.6 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
{
"name": "kubernetes-tool",
"version": "1.0.0",
"description": "A tool to explain Kubernetes files and Helm charts for the DigitalOcean Community.",
"license": "Apache-2.0",
"scripts": {
"build": "npm run build:clean && npm run build:svg && npm run build:template && npm run build:static && npm run build:tool",
"build:clean": "do-vue clean",
"build:svg": "do-vue svgs src/kubernetes-tool/assets",
"build:template": "do-vue template",
"build:static": "copyfiles --up 2 ./src/static/{*,**/*} dist",
"build:tool": "do-vue tool src/kubernetes-tool dist",
"deploy:spaces:comment": "do-vue comment kubernetes-tool",
"dev:prep": "npm run build:svg && npm run build:template && npm run dev:static",
"dev:static": "copyfiles --up 2 ./src/static/{*,**/*} dev",
"dev": "npm run dev:prep && do-vue dev ./src/kubernetes-tool ./dev/kubernetes-tool 8000",
"test": "npm run test:ts-vue && npm run test:scss",
"test:ts-vue": "tsc -noEmit && eslint './src/**/*.{vue,ts}'",
"test:scss": "stylelint ./src/**/*.scss --config node_modules/do-bulma/.stylelintrc.json",
"test:ts-vue:fix": "tsc && eslint './src/**/*.{vue,ts}' --fix"
},
"repository": {
"type": "git",
"url": "git+https://github.com/do-community/kubernetes-tool.git"
},
"keywords": [
"kubernetes"
],
"author": "DigitalOcean",
"bugs": {
"url": "https://github.com/do-community/kubernetes-tool/issues"
},
"homepage": "https://github.com/do-community/kubernetes-tool#readme",
"dependencies": {
"async-lock": "^1.3.1",
"do-bulma": "git+https://github.com/do-community/do-bulma.git",
"do-vue": "git+https://github.com/do-community/do-vue.git",
"escape-string-regexp": "^4.0.0",
"js-yaml": "^4.1.0",
"printj": "^1.3.1",
"prismjs": "^1.27.0",
"vue": "^2.6.14",
"vue-autosuggest": "^2.2.0",
"vue-prism-component": "^1.2.0",
"vue-prism-editor": "0.3.0",
"vue-tippy": "^4.13.0"
},
"devDependencies": {
"@types/async-lock": "^1.1.3",
"@types/js-yaml": "^4.0.5",
"@types/node": "^14.18.12",
"@types/semver": "^7.3.9",
"@types/uuid": "^8.3.4",
"@typescript-eslint/eslint-plugin": "^5.12.0",
"@typescript-eslint/parser": "^5.12.0",
"@vue/component-compiler-utils": "^3.3.0",
"copyfiles": "^2.4.1",
"eslint": "^8.9.0",
"eslint-plugin-vue": "^8.4.1",
"jsdom": "^16.7.0",
"postcss": "^8.4.6",
"posthtml-extend": "^0.6.2",
"sass": "^1.49.8",
"stylelint": "^14.5.1",
"stylelint-config-standard-scss": "^3.0.0",
"stylelint-order": "^5.0.0",
"typescript": "^4.5.5",
"vue-template-compiler": "^2.6.14"
}
}