-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
39 lines (39 loc) · 1.1 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
{
"name": "devicehive",
"version": "2.1.0",
"description": "DeviceHive JS Library",
"main": "index.js",
"scripts": {
"build": "node build.js",
"test": "npm run unitTest & npm run integrationTest",
"unitTest": "node_modules/.bin/mocha test/unit/**/**.spec.js --exit",
"integrationTest": "node_modules/.bin/mocha test/integration/**/**.spec.js --timeout 10000 --exit"
},
"repository": {
"type": "git",
"url": "git+https://github.com/devicehive/devicehive-javascript.git"
},
"author": "",
"license": "Apache-2.0",
"dependencies": {
"isomorphic-fetch": "^2.2.1",
"jwt-decode": "^2.2.0",
"query-string": "^5.1.1",
"randomstring": "^1.1.5",
"string-template": "^1.0.0",
"universal-websocket-client": "^1.0.2"
},
"devDependencies": {
"@babel/core": "^7.0.0-beta.51",
"@babel/preset-env": "^7.0.0-beta.51",
"babel-core": "^6.26.3",
"babel-loader": "^8.0.0-beta.4",
"babelify": "^8.0.0",
"browserify": "^15.2.0",
"chai": "^4.1.2",
"exorcist": "^1.0.1",
"mocha": "^5.2.0",
"tinyify": "^2.4.3",
"ws": "^4.1.0"
}
}