-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
26 lines (26 loc) · 1003 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
{
"name": "azsphere-hardware-definition-root",
"description": "Root package.json which defines common dev tools for the vscode extension and language server projects",
"version": "1.0.0",
"license": "MIT",
"scripts": {
"build": "rimraf ./server/dist/ ./vscode-extension/dist/ && tsc -b --clean && tsc -b",
"watch": "tsc -b -w",
"postinstall": "cd vscode-extension && npm install && cd ../server && npm install && cd ..",
"test": "sh ./scripts/e2e.sh",
"coverage": "nyc ./scripts/e2e.sh ONLY_UNIT_TESTS && nyc report --reporter=html --reporter=json-summary && nyc check-coverage --statements 90",
"publish": "bash ./scripts/publish.sh $EXTENSION_PATH $VSCE_PAT"
},
"devDependencies": {
"@types/mocha": "^8.2.2",
"@types/node": "^12.12.0",
"@typescript-eslint/eslint-plugin": "^4.23.0",
"@typescript-eslint/parser": "^4.23.0",
"eslint": "^7.26.0",
"mocha": "^9.0.2",
"nyc": "^15.1.0",
"rimraf": "^3.0.2",
"source-map-support": "^0.5.19",
"typescript": "^4.3.2"
}
}