-
Notifications
You must be signed in to change notification settings - Fork 100
/
Copy pathpackage.json
96 lines (96 loc) · 2.49 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
{
"name": "@wiotp/sdk",
"version": "0.8.1",
"description": "SDK for developing device, gateway, and application clients for IBM Watson IoT Platform",
"main": "dist/index.js",
"files": [
"dist",
"src",
"package.json",
"README.md",
"LICENCE"
],
"publishConfig": {
"access": "public"
},
"dependencies": {
"axios": "^1.6.5",
"bluebird": "^3.7.2",
"btoa": "^1.2.1",
"concat-stream": "^2.0.0",
"esm": "^3.2.25",
"events": "^3.3.0",
"form-data": "^4.0.0",
"format": "^0.2.2",
"loglevel": "^1.8.1",
"mqtt": "^4.3.8",
"systeminformation": "^5.21.22",
"tinycache": "^1.1.2",
"uuid": "^9.0.1",
"yaml": "^2.3.4",
"yargs": "^17.7.2"
},
"devDependencies": {
"@babel/cli": "^7.23.4",
"@babel/core": "^7.23.7",
"@babel/preset-env": "^7.23.8",
"@babel/register": "^7.23.7",
"@ibm-cloud/cloudant": "^0.8.2",
"@istanbuljs/nyc-config-babel": "^3.0.0",
"babel-plugin-istanbul": "^6.1.1",
"babelify": "^10.0.0",
"browserify": "^17.0.0",
"chai": "^4.4.1",
"chai-as-promised": "^7.1.1",
"coveralls": "3.1.1",
"mocha": "^10.2.0",
"mocha-steps": "^1.3.0",
"nyc": "15.1.0",
"rimraf": "^5.0.5",
"terser": "^5.26.0"
},
"scripts": {
"clean": "rimraf dist/*",
"build": "npm run clean && npm run build:commonjs && npm run build:bundle && npm run build:min",
"build:commonjs": "babel src --out-dir dist",
"build:bundle": "browserify -t [ babelify --presets [ @babel/preset-env ] --global ] src --outfile dist/bundled/wiotp-bundle.js",
"build:min": "terser dist/bundled/wiotp-bundle.js -o dist/bundled/wiotp-bundle.min.js",
"test": "mocha --require @babel/register --require mocha-steps",
"test-cov": "nyc --reporter=lcov --reporter=text-summary mocha --require mocha-steps",
"test:watch": "mocha --require @babel/register --require mocha-steps --watch"
},
"author": {
"name": "David Parker",
"email": "[email protected]"
},
"contributors": [
{
"name": "Tom Klapiscak",
"email": "[email protected]"
},
{
"name": "Bryan Boyd",
"email": "[email protected]"
}
],
"repository": {
"type": "git",
"url": "git+https://github.com/ibm-watson-iot/iot-nodejs.git"
},
"license": "EPL-1.0",
"nyc": {
"require": [
"@babel/register"
],
"all": true,
"include": [
"src/**/*.js"
],
"reporter": [
"lcov",
"text"
],
"sourceMap": false,
"instrument": true
}
}