forked from Azure/azure-iot-sdk-node
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
83 lines (83 loc) · 2.45 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
{
"name": "azure-iot-provisioning-service",
"version": "1.10.1",
"description": "Azure IoT SDK - Provisioning Service Client",
"author": "Microsoft Corporation",
"license": "MIT",
"main": "iotprovisioningservice.js",
"typings": "iotprovisioningservice.d.ts",
"dependencies": {
"async": "^3.2.3",
"es5-ext": "0.10.53",
"azure-iot-common": "1.13.2",
"azure-iot-http-base": "1.12.2",
"debug": "^4.3.1",
"@azure/core-http": "^1.2.3"
},
"devDependencies": {
"@types/debug": "^4.1.5",
"@types/node": "^16.10.2",
"chai": "^4.3.3",
"mocha": "^9.2.1",
"nyc": "^15.0.0",
"sinon": "^11.1.2",
"source-map-support": "^0.5.16",
"ts-node": "^8.6.2",
"tslint": "^6.1.3",
"typescript": "4.4.4"
},
"scripts": {
"npmlockrefresh": "npm i --package-lock-only",
"lint": "tslint --project . -c ../../tslint.json",
"build": "tsc",
"unittest-min": "tsc && nyc --reporter lcov ../../node_modules/mocha/bin/_mocha --reporter dot",
"alltest-min": "tsc && nyc --reporter lcov ../../node_modules/mocha/bin/_mocha --reporter dot test/_*_test*.js",
"unittest": "tsc && nyc --reporter lcov --reporter text ../../node_modules/mocha/bin/_mocha",
"alltest": "tsc && nyc --reporter lcov --reporter text ../../node_modules/mocha/bin/_mocha test/_*_test*.js",
"ci": "npm -s run lint && npm -s run build && npm -s run alltest-min",
"test": "npm -s run lint && npm -s run build && npm -s run alltest"
},
"nyc": {
"exclude": [
"coverage/**",
"**/*.d.ts",
"test{,s}/**",
"test{,-*}.{js,cjs,mjs,ts}",
"**/*{.,-}test.{js,cjs,mjs,ts}",
"**/__tests__/**",
"**/{ava,nyc}.config.{js,cjs,mjs}",
"**/jest.config.{js,cjs,mjs,ts}",
"**/{karma,rollup,webpack}.config.js",
"**/{babel.config,.eslintrc,.mocharc}.{js,cjs}"
],
"extension": [
".ts",
".tsx"
],
"check-coverage": true,
"lines": 80,
"functions": 78,
"branches": 74,
"statements": 79
},
"mocha": {
"require": [
"ts-node/register",
"source-map-support/register"
],
"full-trace": true,
"bail": true,
"spec": "test/**/_*_test.js"
},
"engines": {
"node": ">= 14.0.0"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Azure/azure-iot-sdk-node.git"
},
"bugs": {
"url": "https://github.com/Azure/azure-iot-sdk-node/issues"
},
"homepage": "https://github.com/Azure/azure-iot-sdk-node#readme"
}