This repository has been archived by the owner on Dec 18, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
106 lines (106 loc) · 2.99 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
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
{
"name": "@ts-common/azure-js-dev-tools",
"version": "22.5.3",
"description": "Developer dependencies for TypeScript related projects",
"main": "./dist/lib/index.js",
"types": "./dist/lib/index.d.ts",
"scripts": {
"build": "run-p build:sources build:scripts",
"build:sources": "run-p tsc:sources tslint:sources",
"tsc:sources": "tsc -p tsconfig.json",
"tslint:sources": "tslint -p . -c tslint.json",
"build:scripts": "run-p tsc:scripts tslint:scripts",
"tsc:scripts": "tsc -p ./.scripts/tsconfig.json",
"tslint:scripts": "tslint -p ./.scripts/ -c tslint.json",
"prepack": "npm run build",
"build-test": "npm run build && npm test",
"test": "mocha",
"coverage": "nyc mocha",
"tsc": "run-p tsc:sources tsc:scripts",
"tslint": "run-p tslint:sources tslint:scripts",
"check:packagejsonversion": "ts-node ./.scripts/checkPackageJsonVersion.ts",
"check:foronlycalls": "ts-node ./.scripts/checkForOnlyCalls.ts",
"check:forskipcalls": "ts-node ./.scripts/checkForSkipCalls.ts",
"check:everything": "ts-node ./.scripts/checkEverything.ts",
"planning": "ts-node ./.scripts/planning.ts"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ts-common/azure-js-dev-tools.git"
},
"files": [
"dist/lib/**/*.js",
"dist/lib/**/*.js.map",
"dist/lib/**/*.d.ts",
"lib/**/*.ts",
"LICENSE",
"README.md"
],
"keywords": [
"azure",
"javascript",
"typescript",
"microsoft",
"node",
"browser"
],
"author": "Microsoft Corporation",
"license": "MIT",
"bugs": {
"url": "https://github.com/ts-common/azure-js-dev-tools/issues"
},
"homepage": "https://github.com/ts-common/azure-js-dev-tools#readme",
"dependencies": {
"@azure/logger-js": "^1.3.2",
"@azure/ms-rest-js": "^2.6.0",
"@azure/storage-blob": "^10.4.0",
"@octokit/rest": "^16.43.1",
"@types/archiver": "^3.0.0",
"@types/commonmark": "^0.27.4",
"@types/js-yaml": "^3.12.1",
"archiver": "^4.0.2",
"commonmark": "^0.29.0",
"isomorphic-git": "^1.10.0",
"js-yaml": "^3.13.1",
"tslib": "^1.10.0",
"yargs": "^14.0.0"
},
"devDependencies": {
"@types/chai": "^4.1.7",
"@types/mocha": "^5.2.6",
"@types/node": "^11.10.4",
"@types/yargs": "^13.0.2",
"autorest": "^2.0.4301",
"chai": "^4.2.0",
"mocha": "^9.1.1",
"mocha-junit-reporter": "^1.23.1",
"mocha-multi-reporters": "^1.5.1",
"npm-run-all": "^4.1.5",
"nyc": "^14.1.1",
"open-cli": "^7.0.1",
"pre-commit": "^1.2.2",
"source-map-support": "^0.5.13",
"ts-node": "^8.3.0",
"tslint": "^5.19.0",
"typescript": "^3.5.3"
},
"pre-commit": [
"check:everything"
],
"mocha": {
"colors": true,
"require": [
"source-map-support/register"
],
"reporter": "mocha-multi-reporters",
"reporter-options": "configFile=mocha.config.json",
"spec": "dist/test/**/*.js"
},
"nyc": {
"reporter": [
"text",
"html",
"cobertura"
]
}
}