-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
84 lines (84 loc) · 2.17 KB
/
package.json
File metadata and controls
84 lines (84 loc) · 2.17 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
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
{
"name": "@nrfcloud/device-simulator-v2",
"version": "4.0.0",
"description": "nRF Cloud device simulator: a tool for turning your laptop into a device that connects to nRF Cloud, and simulating various device behaviors.",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"build": "tsc && cp -r ./data dist/",
"deploy": "yarn build && yarn publish",
"deploy:beta": "yarn build && yarn publish --tag beta",
"fix": "dprint fmt",
"lint": "dprint check && yarn run tslint",
"schemas2ts": "json2ts schemas/message.schema.json src/app/appMessage.ts",
"test": "echo \"Error: no test specified\" && exit 1",
"tslint": "tslint --project ./tsconfig.json"
},
"repository": {
"type": "git",
"url": "git+https://github.com/nRFCloud/device-simulator-v2.git"
},
"author": "Nordic Semiconductor ASA | nordicsemi.no",
"license": "BSD-3-Clause",
"bugs": {
"url": "https://github.com/nRFCloud/device-simulator-v2/issues"
},
"homepage": "https://github.com/nRFCloud/device-simulator-v2#readme",
"devDependencies": {
"@nrfcloud/tslint-config": "^3.11.1",
"@types/aws-iot-device-sdk": "^2.2.8",
"@types/jest": "^26.0.4",
"@types/node": "^18.19.56",
"@types/uuid": "^8.0.0",
"dprint": "^0.47.2",
"husky": "^4.2.5",
"json-schema-to-typescript": "^9.1.1",
"lint-staged": "^10.2.11",
"tslint": "^6.1.2",
"typescript": "^5.5.4"
},
"dependencies": {
"aws-iot-device-sdk": "^2.2.15",
"aws-sdk": "^2.712.0",
"axios": "^0.19.2",
"colors": "^1.4.0",
"commander": "^12.1.0",
"event-stream": "^4.0.1",
"ez-cache": "^1.1.0",
"tcomb": "^3.2.29",
"ts-enum-util": "^4.0.2",
"uuid": "^8.2.0"
},
"engines": {
"npm": "PLEASE_USE_YARN"
},
"publishConfig": {
"access": "public"
},
"release": {
"branches": [
"saga"
],
"remoteTags": true
},
"files": [
"package-lock.json",
"dist",
"bin",
"scripts",
"README.md",
"LICENSE"
],
"husky": {
"hooks": {
"pre-commit": "npx tsc"
}
},
"lint-staged": {
"*.ts": [
"tslint --project ./tsconfig.json --fix",
"dprint fmt",
"git add"
]
}
}