forked from eclipse-theia/theia
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
30 lines (30 loc) · 1.07 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
{
"private": true,
"name": "@theia/ext-scripts",
"version": "0.8.0",
"license": "EPL-2.0 OR GPL-2.0 WITH Classpath-exception-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'",
"ext:clean": "theiaext compile: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/build.tslint.json --project compile.tsconfig.json",
"ext:watch": "tsc -w -p compile.tsconfig.json",
"ext:test": "nyc mocha --opts ../../configs/mocha.opts \"./lib/**/*.*spec.js\"",
"ext:test:watch": "mocha -w --opts ../../configs/mocha.opts \"./lib/**/*.*spec.js\"",
"ext:test:clean": "rimraf .nyc_output && rimraf coverage"
}
}