forked from eclipse-theia/theia
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
32 lines (32 loc) · 1.18 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
{
"private": true,
"name": "@theia/ext-scripts",
"version": "0.2.0",
"description": "NPM scripts for Theia packages.",
"files": [
"theiaext"
],
"bin": {
"theiaext": "theiaext",
"run": "theia-run"
},
"scripts": {
"prepare": "echo 'skip'",
"clean": "echo 'skip'",
"build": "echo 'skip'",
"watch": "echo 'skip'",
"test": "echo 'skip'",
"docs": "echo 'skip'",
"ext:clean": "theiaext compile:clean && theiaext docs:clean && theiaext test:clean",
"ext:build": "concurrently -n compile,lint -c blue,green \"theiaext compile\" \"theiaext lint\"",
"ext:compile": "tsc -p compile.tsconfig.json",
"ext:compile:clean": "rimraf lib",
"ext:lint": "tslint -c ../../configs/tslint.json --project compile.tsconfig.json",
"ext:watch": "tsc -w -p compile.tsconfig.json",
"ext:docs": "typedoc --tsconfig compile.tsconfig.json --options ../../configs/typedoc.json",
"ext:docs:clean": "rimraf docs/api",
"ext:test": "nyc mocha --opts ../../configs/mocha.opts \"./src/**/*.*spec.ts\"",
"ext:test:watch": "mocha -w --opts ../../configs/mocha.opts \"./src/**/*.*spec.ts\"",
"ext:test:clean": "rimraf .nyc_output && rimraf coverage"
}
}