forked from ibm-watson-iot/iot-nodejs
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
56 lines (56 loc) · 2.3 KB
/
package.json
File metadata and controls
56 lines (56 loc) · 2.3 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
{
"name": "ibmiotf",
"version": "0.2.41",
"description": "A library for developing device and application clients for IBM Watson IoT Platform",
"main": "dist/iotf-client.js",
"dependencies": {
"axios": "^0.5.4",
"bluebird": "^2.9.34",
"btoa": "^1.1.2",
"concat-stream": "^1.6.0",
"events": "^1.0.2",
"form-data": "^2.2.0",
"format": "^0.2.1",
"loglevel": "^1.4.0",
"mqtt": "^2.8.2"
},
"devDependencies": {
"babel": "^5.8.21",
"babelify": "^6.1.3",
"browserify": "^14.0.1",
"chai": "^3.2.0",
"cpx": "latest",
"mocha": "^2.2.5",
"moxios": "^0.4.0",
"rimraf": "latest",
"sinon": "^1.16.1",
"uglify-js": "latest"
},
"scripts": {
"clean": "rimraf dist/*",
"build:commonjs": "babel src --out-dir dist --modules umd",
"build:bundle": "browserify src/iotf-client.js -t babelify -s IBMIoTF --outfile dist/iotf-client-bundle.js",
"build:min": "browserify src/iotf-client.js -t babelify -s IBMIoTF | uglifyjs > dist/iotf-client-bundle.min.js",
"build": "npm run clean && npm run build:commonjs && npm run build:bundle && npm run build:min",
"postbuild": "cpx src/clients/IoTFoundation.pem dist/util",
"prepublish": "npm run build",
"pretest": "cpx src/clients/IoTFoundation.pem . && cpx src/clients/IoTFoundation.pem src/util",
"test": "mocha --compilers js:babel/register",
"test:watch": "mocha --compilers js:babel/register --watch"
},
"author": {
"name": "Jeffrey Dare",
"email": "jeffdare@in.ibm.com"
},
"contributors": [
{
"name": "Amit M Mangalvedkar",
"email": "amitmangalvedkar@in.ibm.com"
}
],
"repository": {
"type": "git",
"url": "git+https://github.com/ibm-watson-iot/iot-nodejs.git"
},
"license": "EPL-1.0"
}