-
Notifications
You must be signed in to change notification settings - Fork 40
/
package.json
54 lines (54 loc) · 1.45 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
{
"name": "generator-theia-extension",
"version": "0.1.40",
"engines": {
"yarn": ">=1.7.0 <2",
"node": ">=18"
},
"description": "Helps to setup the project structure for developing extensions to the Theia IDE",
"repository": {
"type": "git",
"url": "https://github.com/theia-ide/generator-theia-extension"
},
"bugs": {
"url": "https://github.com/theia-ide/generator-theia-extension/issues"
},
"homepage": "https://github.com/theia-ide/generator-theia-extension",
"keywords": [
"yeoman-generator"
],
"np": {
"packageManager": "yarn"
},
"author": "TypeFox",
"license": "EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0",
"dependencies": {
"fs-extra": "^10.0.0",
"request": "^2.88.2",
"tar": "^6.1.1",
"yeoman-generator": "^5.0.0"
},
"devDependencies": {
"@types/mocha": "^5.2.7",
"@types/yeoman-generator": "^5.0.0",
"mocha": "^6.2.0",
"rimraf": "^5.0.0",
"typescript": "~4.5.5",
"yeoman-assert": "^3.1.1",
"yeoman-environment": "^3.0.0",
"yeoman-test": "^5.0.0"
},
"files": [
"generators",
"templates"
],
"scripts": {
"prepare": "yarn run clean && yarn run build",
"clean": "rimraf lib",
"build": "tsc",
"watch": "tsc -w",
"test": "mocha",
"mkdir-debug-cwd": "mkdirp ./testing && rimraf ./testing/*",
"about:mkdir-debug-cwd": "echo 'Is used as preLaunchTask in .vscode/launch.json; mkdirp is transitively pulled by mocha'"
}
}