forked from eclipse-theia/generator-theia-extension
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
41 lines (41 loc) · 1.05 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
{
"name": "generator-theia-extension",
"version": "0.1.24",
"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"
],
"author": "TypeFox",
"license": "EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0",
"dependencies": {
"yeoman-generator": "^4.0.2"
},
"devDependencies": {
"@types/mocha": "^5.2.7",
"@types/yeoman-generator": "^3.1.4",
"mocha": "^6.2.0",
"rimraf": "^3.0.0",
"typescript": "^3.6.3",
"yeoman-assert": "^3.1.1",
"yeoman-test": "^2.0.0"
},
"files": [
"generators",
"templates"
],
"scripts": {
"prepare": "yarn run clean && yarn run build",
"clean": "rimraf lib",
"build": "tsc",
"watch": "tsc -w",
"test": "mocha"
}
}