-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
36 lines (36 loc) · 801 Bytes
/
package.json
File metadata and controls
36 lines (36 loc) · 801 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
{
"name": "crcljs-node",
"version": "1.0.0",
"description": "CRCLJS-Node implementation",
"main": "module.mjs",
"scripts": {
"test": "nyc mocha ./test",
"start": "node main.mjs"
},
"repository": {
"type": "git",
"url": "git+https://github.com/PRIArobotics/CRCLJS-Node.git"
},
"keywords": [
"crcl",
"robotics",
"node"
],
"author": "Timon Hoebert",
"license": "ISC",
"bugs": {
"url": "https://github.com/PRIArobotics/CRCLJS-Node/issues"
},
"homepage": "https://github.com/PRIArobotics/CRCLJS-Node#readme",
"dependencies": {
"component-emitter": "^1.3.0",
"lodash": "^4.17.15",
"promise-socket": "^7.0.0"
},
"devDependencies": {
"chai": "^4.2.0",
"mocha": "^7.1.1",
"nyc": "^15.0.0",
"sinon": "^9.0.1"
}
}