-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
64 lines (64 loc) · 1.66 KB
/
package.json
File metadata and controls
64 lines (64 loc) · 1.66 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
{
"name": "hedgehog-client",
"version": "0.7.0-rc.2",
"description": "Client library for the Hedgehog Educational Robotics Controller",
"main": "build/hedgehog/index.js",
"scripts": {
"build": "grunt build",
"test": "nyc mocha --require ts-node/register --reporter spec --check-leaks test/**/*.spec.ts",
"coveralls": "nyc report --reporter=text-lcov | ./node_modules/.bin/coveralls",
"gsl-protocol": "python -m gsl_protocol_typescript",
"protoc": "grunt protoc"
},
"repository": {
"type": "git",
"url": "git+https://github.com/PRIArobotics/HedgehogNodeClient.git"
},
"keywords": [
"hedgehog",
"controller",
"pria",
"robotics",
"robot",
"education"
],
"author": "Thomas Fellner, Markus Klein",
"license": "AGPL-3.0",
"bugs": {
"url": "https://github.com/PRIArobotics/HedgehogNodeClient/issues"
},
"homepage": "https://github.com/PRIArobotics/HedgehogNodeClient#readme",
"devDependencies": {
"@types/mocha": "^5.2.6",
"@types/node": "^11.9.4",
"coveralls": "^3.0.2",
"grunt": "^1.0.3",
"grunt-contrib-clean": "^2.0.0",
"grunt-contrib-copy": "^1.0.0",
"grunt-ts": "^6.0.0-beta.22",
"grunt-tslint": "^5.0.2",
"mocha": "^6.0.0",
"mocha-lcov-reporter": "^1.3.0",
"nyc": "^13.3.0",
"ts-node": "^8.0.2",
"tslint": "^5.12.1",
"typescript": "^3.3.3"
},
"dependencies": {
"@babel/polyfill": "^7.2.5",
"google-protobuf": "^3.7.0-rc.2",
"zeromq": "^5.1.0"
},
"nyc": {
"reporter": "html",
"all": true,
"extension": [
".ts"
],
"include": [
"hedgehog/**/*.ts"
],
"sourceMap": true,
"instrument": true
}
}