-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
68 lines (68 loc) · 1.78 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
68
{
"name": "pera-swarm",
"version": "2.0.1",
"description": "A generalized, efficient, and flexible JavaScript library for creating swarm robotics simulators.",
"main": "index.js",
"types": "lib",
"files": [
"lib",
"index.js"
],
"directories": {
"lib": "lib",
"test": "__test__"
},
"scripts": {
"build": "tsc",
"dev": "tsc --watch",
"format": "prettier --write \"**/*.+(js|jsx|ts|tsx|json|yml|yaml)\"",
"test": "mocha --recursive './__tests__/**/*test.js'",
"test:watch": "mocha --watch --recursive './__tests__/**/*test.js'"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Pera-Swarm/pera-swarm.git"
},
"keywords": [
"Pera",
"Swarm",
"Pera-Swarm",
"Swarm",
"Robotics",
"Virtual",
"Robots",
"Simulator",
"Swarm",
"Robotic",
"Simulator"
],
"author": "Pera-Swarm",
"license": "MIT",
"bugs": {
"url": "https://github.com/Pera-Swarm/pera-swarm/issues"
},
"homepage": "https://github.com/Pera-Swarm/pera-swarm#readme",
"publishConfig": {
"access": "public"
},
"devDependencies": {
"@types/chai": "^4.2.14",
"@types/mathjs": "^6.0.9",
"@types/mocha": "^8.0.4",
"@types/mqtt": "^2.5.0",
"@types/node": "^14.14.10",
"@types/uuid": "^8.3.0",
"chai": "^4.2.0",
"cross-env": "^7.0.2",
"dotenv": "^8.2.0",
"mathjs": "^8.1.1",
"mocha": "^8.2.1",
"prettier": "^2.2.0",
"ts-node": "^9.0.0",
"typescript": "^4.1.2"
},
"dependencies": {
"@pera-swarm/mqtt-router": "^1.3.2",
"uuid": "^8.3.2"
}
}