-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
56 lines (56 loc) · 1.16 KB
/
package.json
File metadata and controls
56 lines (56 loc) · 1.16 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": "clearblade-js-client",
"version": "3.3.3",
"description": "ClearBlade JavaScript API =========================",
"main": "index.js",
"directories": {
"test": "test"
},
"dependencies": {
"@types/paho-mqtt": "^1.0.3"
},
"keywords": [
"iot",
"clearblade",
"javascript",
"browser",
"client"
],
"devDependencies": {
"@types/jest": "^23.0.2",
"jest": "^23.1.0",
"ts-jest": "^22.4.6",
"typescript": "^2.9.1"
},
"scripts": {
"test": "jest",
"test:watch": "jest --watchAll"
},
"jest": {
"transform": {
"^.+\\.tsx?$": "ts-jest"
},
"testRegex": "(/__tests__/.*|(\\.|/)(test|spec))\\.(jsx?|tsx?)$",
"moduleFileExtensions": [
"ts",
"tsx",
"js",
"jsx",
"json",
"node"
],
"setupFiles": [
"./testing/test-setup.js"
]
},
"repository": {
"type": "git",
"url": "git://github.com/ClearBlade/JavaScript-API.git"
},
"author": "ClearBlade Inc.",
"license": "Apache License",
"bugs": {
"url": "https://github.com/ClearBlade/JavaScript-API/issues"
},
"homepage": "https://github.com/ClearBlade/JavaScript-API"
}