-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
67 lines (67 loc) · 1.64 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
{
"name": "@absmach/magistrala-sdk",
"version": "0.9.11",
"description": "Official Magistrala sdk",
"main": "./dist/sdk.js",
"module": "./dist/sdk.mjs",
"types": "./dist/sdk.d.ts",
"engines": {
"node": ">=18.0.0"
},
"files": [
"dist",
"sdk.js",
"LICENSE"
],
"scripts": {
"build": "tsup",
"test": "jest",
"lint": "eslint . --ext .ts",
"lint:fix": "eslint . --ext .ts --fix",
"release": "npm run build && changeset publish"
},
"repository": {
"type": "git",
"url": "git+https://github.com/absmach/sdk-js.git"
},
"publishConfig": {
"access": "public"
},
"keywords": [
"magistrala",
"magistrala-sdk",
"npm"
],
"author": "Abstract Machines",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/absmach/sdk-js/issues"
},
"homepage": "https://github.com/absmach/sdk-js#readme",
"dependencies": {
"@changesets/cli": "^2.27.6",
"node-fetch": "^3.3.2",
"tsup": "^8.0.2"
},
"devDependencies": {
"@types/jest": "^29.5.12",
"@typescript-eslint/eslint-plugin": "^7.18.0",
"@typescript-eslint/parser": "^7.18.0",
"eslint": "^8.57.1",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-config-airbnb-typescript": "^18.0.0",
"eslint-plugin-import": "^2.31.0",
"eslint-plugin-n": "^16.6.2",
"eslint-plugin-promise": "^6.1.1",
"esmify": "^0.1.2",
"jest": "^29.7.0",
"jest-fetch-mock": "^3.0.3",
"jsdoc": "^4.0.2",
"rollup": "^4.0.2",
"rollup-plugin-commonjs": "^10.1.0",
"rollup-plugin-node-resolve": "^5.2.0",
"ts-jest": "^29.1.2",
"ts-node": "^10.9.2",
"typescript": "^5.4.3"
}
}