-
Notifications
You must be signed in to change notification settings - Fork 15
Expand file tree
/
Copy pathpackage.json
More file actions
57 lines (57 loc) · 1.71 KB
/
package.json
File metadata and controls
57 lines (57 loc) · 1.71 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
{
"name": "rticonnextdds-connector",
"version": "1.2.1",
"description": "RTI Connector for JavaScript",
"main": "rticonnextdds-connector.js",
"files": [
"rticonnextdds-connector.js",
"rticonnextdds-connector/lib",
"examples/nodejs"
],
"repository": {
"type": "git",
"url": "https://github.com/rticommunity/rticonnextdds-connector-js.git"
},
"dependencies": {
"events": "^3.2.0",
"ref-napi": "^3.0.1",
"ref-struct-napi": "^1.1.1",
"ffi-napi": "^3.1.0",
"sleep": "^6.3.0"
},
"scripts": {
"test": "mocha ./test/nodejs/",
"test-ci": "mocha ./test/nodejs/ --reporter mocha-junit-reporter",
"coverage": "nyc --reporter=clover --reporter=lcov --reporter=text-summary --check-coverage npm run test",
"coverage-ci": "nyc --reporter=clover --reporter=lcov --reporter=text-summary --check-coverage npm run test-ci",
"lint": "eslint rticonnextdds-connector.js test/nodejs/ --ext .js",
"lint-fix": "eslint --fix rticonnextdds-connector.js test/nodejs/ --ext .js"
},
"keywords": [
"rti",
"dds",
"connext",
"connector",
"pub",
"sub",
"pub-sub"
],
"author": "Real-Time Innovations, Inc.",
"license": "SEE LICENSE IN LICENSE.pdf",
"bugs": {
"url": "https://github.com/rticommunity/rticonnextdds-connector-js/issues"
},
"homepage": "https://github.com/rticommunity/rticonnextdds-connector-js",
"devDependencies": {
"babel-eslint": "^10.1.0",
"chai": "^4.3.4",
"chai-as-promised": "^7.1.1",
"eslint": "^7.29.0",
"eslint-config-standard": "^16.0.3",
"eslint-plugin-import": "^2.23.4",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^5.1.0",
"nyc": "^15.1.0",
"sinon": "^10.0.0"
}
}