-
Notifications
You must be signed in to change notification settings - Fork 7
/
package.json
67 lines (67 loc) · 2.08 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": "kuzzle-device-manager",
"version": "2.5.0",
"description": "Manage your IoT devices and assets. Choose a provisioning strategy, receive and decode payload, handle your IoT business logic.",
"author": "The Kuzzle Team (support@kuzzle.io)",
"repository": {
"type": "git",
"url": "git+https://github.com/kuzzleio/kuzzle-device-manager.git"
},
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"docker": "docker-compose run kuzzle ",
"dev": "NODE_ENV=development ergol tests/application/app.ts -c ergol.config.json",
"prod": "node ./dist/tests/application/app.js",
"test": "npm run test:functional && npm run test:types",
"test:functional": "jest --runInBand",
"test:types": "tsc --noEmit",
"lint": "eslint ./lib ./tests --ext .ts",
"lint:fix": "eslint ./lib ./tests --ext .ts --fix",
"prettier": "prettier lib/ tests/ --write",
"build": "tsc --build tsconfig.json",
"prepack": "npm run build"
},
"license": "Apache-2.0",
"dependencies": {
"ajv": "^8.13.0",
"ajv-formats": "^3.0.1",
"csv-stringify": "^6.4.5",
"kuzzle-plugin-commons": "^1.2.0",
"lodash": "^4.17.21",
"uuid": "~9.0.1"
},
"devDependencies": {
"@commitlint/cli": "^18.6.0",
"@commitlint/config-conventional": "^18.6.0",
"@semantic-release/changelog": "^6.0.3",
"@semantic-release/git": "^10.0.1",
"@types/jest": "^29.5.12",
"@types/lodash": "^4.14.202",
"@types/node": "^20.11.16",
"axios": "^1.6.7",
"csv-parse": "^5.5.3",
"cz-conventional-changelog": "^3.3.0",
"ergol": "^1.0.2",
"eslint-plugin-jest": "^27.6.3",
"eslint-plugin-kuzzle": "^0.0.12",
"execa": "^9.3.0",
"jest": "^29.7.0",
"kuzzle": "^2.33.0",
"kuzzle-sdk": "^7.11.2",
"read-pkg": "^9.0.1",
"semantic-release-config-kuzzle": "^1.0.0",
"semantic-release-slack-bot": "^4.0.2",
"ts-jest": "^29.1.2",
"ts-node": "^10.9.2",
"type-fest": "^4.10.2",
"typescript": "^5.3.3"
},
"peerDependencies": {
"kuzzle": "^2.33.0"
},
"files": [
"dist/",
"!dist/tests"
]
}