-
Notifications
You must be signed in to change notification settings - Fork 13
/
Copy pathpackage.json
46 lines (46 loc) · 1.15 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
{
"name": "@eclipse-che/vscode-theia-comparator",
"publisher": "Eclipse Che",
"version": "0.0.1",
"description": "Compare VS Code API and Theia API",
"license": "EPL-2.0",
"author": "Florent Benoit",
"publishConfig": {
"access": "public"
},
"files": [
"src",
"conf",
"lib"
],
"bin": {
"compare-vscode-theia": "./lib/index.js"
},
"dependencies": {
"fs-extra": "^10.1.0",
"graphql": "^16.5.0",
"graphql-request": "^4.3.0",
"typescript": "^4.7.4",
"untildify": "^4.0.0",
"yaml": "^2.1.1"
},
"devDependencies": {
"@types/node": "^16.0.0",
"@types/untildify": "^4.0.0",
"rimraf": "^3.0.2",
"tslint": "^6.1.3",
"typescript-formatter": "^7.2.2"
},
"scripts": {
"prepare": "yarn run clean && yarn run build",
"clean": "rimraf lib",
"format-code": "tsfmt -r",
"compile": "tsc",
"watch": "tsc -watch",
"tslint-fix": "tslint --fix --project .",
"tslint": "tslint --project .",
"build": "yarn run format-code && yarn run tslint-fix && yarn run tslint && yarn run compile",
"ci": "yarn run tslint && yarn run compile",
"generate": "node lib/index.js"
}
}