-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
50 lines (50 loc) · 1.14 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
{
"name": "waddle-node-sdk",
"version": "0.0.4",
"description": "Waddle Cloud SDK client library",
"main": "src/waddle.ts",
"directories": {
"test": "tests"
},
"scripts": {
"build": "tsc",
"test": "jest --config jest.config.js",
"ci": "yarn install --frozen-lockfile"
},
"repository": {
"type": "git",
"url": "git+https://github.com/CleverInsight/waddle-node-sdk.git"
},
"keywords": [
"waddle",
"waddleDB",
"cleverinsight",
"timeseriesDB",
"waddleCloud",
"waddleEdge",
"waddleHub",
"waddleCore",
"waddle-api"
],
"author": "Anusree TM",
"license": "ISC",
"bugs": {
"url": "https://github.com/CleverInsight/waddle-node-sdk/issues"
},
"homepage": "https://github.com/CleverInsight/waddle-node-sdk#readme",
"dependencies": {
"@types/jest": "^29.2.5",
"axios": "^1.2.2",
"jest": "^29.3.1",
"prettier": "^2.8.1",
"supertest": "^6.3.3",
"ts-jest": "^29.0.3",
"tslint": "^6.1.3",
"tslint-config-prettier": "^1.18.0",
"typescript": "^4.9.4"
},
"devDependencies": {
"@types/express": "^4.17.15",
"@types/supertest": "^2.0.12"
}
}