forked from eclipse-theia/theia
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
24 lines (24 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
{
"private": true,
"name": "@theia/ext-scripts",
"version": "1.1.0",
"license": "EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0",
"description": "NPM scripts for Theia packages.",
"bin": {
"theiaext": "theia-ext.js",
"run": "theia-run.js"
},
"theia-monorepo-scripts": {
"ext:clean": "theiaext compile:clean && theiaext lint:clean && theiaext test:clean",
"ext:build": "concurrently -n compile,lint -c blue,green \"theiaext compile\" \"theiaext lint\"",
"ext:compile": "tsc -b compile.tsconfig.json --verbose",
"ext:compile:clean": "rimraf lib *.tsbuildinfo",
"ext:lint": "eslint --cache=true --no-error-on-unmatched-pattern=true \"{src,test}/**/*.{ts,tsx}\"",
"ext:lint:clean": "rimraf .eslintcache",
"ext:watch": "tsc -p compile.tsconfig.json -w",
"ext:watch:slow": "tsc -b compile.tsconfig.json -w",
"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 coverage"
}
}