-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
66 lines (66 loc) · 1.45 KB
/
Copy pathpackage.json
File metadata and controls
66 lines (66 loc) · 1.45 KB
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
{
"name": "azunit",
"version": "1.0.7",
"description": "A lightweight unit testing framework for Microsoft Azure based on the ARM resource graphs.",
"main": "dist/src/azunit-app-console/azunit.js",
"bin": {
"azunit": "dist/src/azunit-app-console/azunit.js"
},
"directories": {
"test": "test"
},
"dependencies": {
"@azure/arm-resources": "^4.0.0",
"@azure/ms-rest-nodeauth": "^3.0.6",
"commander": "^2.20.3",
"dotenv": "^8.2.0",
"glob": "^7.1.6",
"jsonpath-plus": "^1.1.0",
"ms-rest-azure": "^3.0.0",
"xml-writer": "^1.7.0",
"yaml": "^1.10.0"
},
"devDependencies": {
"@types/glob": "^7.1.3",
"@types/mocha": "^5.2.7",
"@types/node": "^12.19.6",
"mocha": "^8.2.1",
"mocha-typescript": "^1.1.17",
"nyc": "^14.1.1",
"ts-node": "^8.10.2",
"typescript": "^3.9.7"
},
"scripts": {
"build": "tsc && sudo npm install -g ./",
"test": "nyc mocha 'test/**/*.spec.ts'"
},
"repository": {
"type": "git",
"url": "https://github.com/nathankitchen/azunit.git"
},
"nyc": {
"extends": "@istanbuljs/nyc-config-typescript",
"check-coverage": false,
"include": [
"src/**/*.ts"
],
"extension": [
".ts"
],
"require": [
"ts-node/register"
],
"reporter": [
"text"
],
"sourceMap": true,
"instrument": true
},
"keywords": [
"unit",
"test",
"azure"
],
"author": "Nathan Kitchen",
"license": "MIT"
}