-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
36 lines (36 loc) · 900 Bytes
/
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
{
"name": "generator-theia-widget",
"version": "0.0.1",
"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": "Ericsson",
"license": "Apache-2.0",
"dependencies": {
"yeoman-generator": "^3.1.1"
},
"devDependencies": {
"@types/yeoman-generator": "^3.0.1",
"rimraf": "^2.6.1",
"typescript": "^2.5.2"
},
"files": [
"generators",
"templates"
],
"scripts": {
"prepare": "yarn run clean && yarn run build",
"clean": "rimraf lib",
"build": "tsc",
"watch": "tsc -w"
}
}