forked from Azure/azure-iot-sdk-node
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
79 lines (79 loc) · 2.29 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
{
"name": "azure-iot-provisioning-device",
"version": "1.8.6",
"description": "Azure Device Provisioning SDK device client",
"author": "Microsoft Corporation",
"license": "MIT",
"main": "index.js",
"typings": "index.d.ts",
"dependencies": {
"azure-iot-common": "1.12.6",
"debug": "^4.1.1",
"machina": "^4.0.2"
},
"devDependencies": {
"@types/node": "^9.6.50",
"chai": "^4.2.0",
"nyc": "^15.0.0",
"mocha": "^7.1.1",
"sinon": "^7.4.1",
"source-map-support": "^0.5.16",
"ts-node": "^8.6.2",
"tslint": "^6.1.0",
"typescript": "3.7.5"
},
"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": 89,
"functions": 82,
"branches": 81,
"statements": 89
},
"mocha": {
"require": [
"ts-node/register",
"source-map-support/register"
],
"full-trace": true,
"bail": true,
"spec": "test/**/_*_test.js"
},
"engines": {
"node": ">= 10.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"
}