-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
98 lines (98 loc) · 2.76 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
87
88
89
90
91
92
93
94
95
96
97
98
{
"name": "generator-phovea",
"description": "helper generator for phovea",
"homepage": "https://phovea.caleydo.org",
"version": "12.0.0",
"author": {
"name": "Caleydo Team",
"email": "[email protected]",
"url": "https://caleydo.org"
},
"license": "BSD-3-Clause",
"bugs": {
"url": "https://github.com/phovea/generator-phovea/issues"
},
"repository": {
"type": "git",
"url": "https://github.com/phovea/generator-phovea.git"
},
"main": "generators/app/index.js",
"files": [
"base/",
"generators/",
"utils/",
"knownPhoveaPlugins.json",
".nvmrc",
".npm-version"
],
"keywords": [
"yeoman-generator"
],
"engines": {
"npm": ">= 6.12",
"node": ">= 14.19"
},
"dependencies": {
"@types/yeoman-generator": "^3.1.4",
"chalk": "^4.1.0",
"check-node-version": "^4.0.3",
"child-process-promise": "^2.2.1",
"csv-parse": "^4.14.2",
"escodegen": "^2.0.0",
"esprima": "^4.0.1",
"esprima-walk": "0.1.0",
"fs-extra": "^9.0.1",
"git-remote-origin-url": "^3.1.0",
"glob": "^7.1.6",
"inquirer": "^7.3.3",
"inquirer-npm-name": "^3.0.0",
"listr2": "^3.2.3",
"lodash": "^4.17.20",
"open": "^7.3.1",
"parse-author": "^2.0.0",
"request-promise": "^4.2.6",
"semver": "^7.3.4",
"semver-intersect": "^1.4.0",
"tmp": "^0.2.1",
"update-notifier": "^5.0.1",
"yamljs": "^0.3.0",
"yeoman-environment": "^2.10.3",
"yeoman-generator": "^4.12.0"
},
"devDependencies": {
"@types/yeoman-generator": "^3.1.4",
"@typescript-eslint/eslint-plugin": "^5.9.0",
"@typescript-eslint/parser": "^5.9.0",
"gulp": "^4.0.2",
"gulp-eslint-new": "^1.4.2",
"gulp-exclude-gitignore": "^1.2.0",
"gulp-jest": "^4.0.3",
"gulp-line-ending-corrector": "^1.0.3",
"gulp-plumber": "^1.2.1",
"eslint": "^8.7.0",
"eslint-config-airbnb": "^19.0.4",
"eslint-config-airbnb-typescript": "^16.1.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-import": "^2.25.4",
"eslint-plugin-jest": "^25.3.4",
"eslint-plugin-jsx-a11y": "^6.5.1",
"eslint-plugin-prettier": "^4.0.0",
"eslint-plugin-react": "^7.28.0",
"eslint-plugin-react-hooks": "^4.3.0",
"jest-cli": "^24.9.0",
"yeoman-assert": "^3.1.1",
"yeoman-test": "^3.0.0",
"rimraf": "^3.0.2",
"typescript": "~4.6.2"
},
"scripts": {
"lint": "gulp lint",
"lint:watch": "gulp lintWatch",
"prepublishOnly": "gulp prepublish",
"test": "gulp test",
"test:watch": "gulp testWatch",
"release:major": "npm version major && npm publish && git push --follow-tags",
"release:minor": "npm version minor && npm publish && git push --follow-tags",
"release:patch": "npm version patch && npm publish && git push --follow-tags"
}
}