-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpackage.json
32 lines (32 loc) · 1023 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
27
28
29
30
31
32
{
"name": "matlab-azure-devops-extension",
"version": "1.0.0",
"scripts": {
"bat": "npm run clean && npm run build && npm run test",
"clean": "node ./scripts/clean.js",
"lint": "tslint --project .",
"compile": "node ./scripts/compile.js",
"copyResources": "node ./scripts/copyResources.js",
"build": "npm run lint && npm run compile && npm run copyResources",
"test": "node ./scripts/test.js",
"preparePackage": "node ./scripts/preparePackage.js"
},
"devDependencies": {
"@types/mocha": "^8.2.2",
"@types/node": "^22.7.5",
"@types/shelljs": "^0.8.15",
"@types/sinon": "^10.0.13",
"@types/uuid": "^9.0.8",
"mocha": "^10.0.0",
"nyc": "^15.1.0",
"shelljs": "^0.8.5",
"sinon": "^15.0.1",
"sync-request": "^6.1.0",
"tfx-cli": "^0.16.0",
"tslint": "^5.20.1",
"typescript": "^4.2.4"
},
"nyc": {
"exclude": "**/test/*"
}
}