-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
38 lines (38 loc) · 943 Bytes
/
package.json
File metadata and controls
38 lines (38 loc) · 943 Bytes
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
{
"name": "orchestration-sim",
"version": "1.0.0",
"description": "IoT orchestration simulator",
"main": "src/index.js",
"scripts": {
"start": "tsc && node build/index.js",
"start-no-build": "node build/index.js",
"dev": "nodemon src/index.ts",
"mutate": "stryker run",
"build": "tsc",
"test": "jest"
},
"keywords": [],
"author": "",
"license": "ISC",
"devDependencies": {
"@babel/core": "^7.17.8",
"@babel/preset-env": "^7.16.11",
"@babel/preset-typescript": "^7.16.7",
"@types/commander": "^2.12.2",
"@types/jest": "^27.4.1",
"@types/node": "^14.14.32",
"@types/sha1": "^1.1.3",
"@types/winston": "^2.4.4",
"babel-jest": "^27.5.1",
"eslint": "^7.22.0",
"jest": "^27.5.1",
"nodemon": "^2.0.7",
"ts-node": "^9.1.1",
"typescript": "^4.2.3"
},
"dependencies": {
"commander": "^7.2.0",
"sha1": "^1.1.1",
"winston": "^3.6.0"
}
}