-
Notifications
You must be signed in to change notification settings - Fork 84
Expand file tree
/
Copy pathpackage.json
More file actions
86 lines (86 loc) · 2.39 KB
/
package.json
File metadata and controls
86 lines (86 loc) · 2.39 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
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
{
"name": "rclnodejs",
"version": "0.17.0",
"description": "ROS2.0 JavaScript client with Node.js",
"main": "index.js",
"types": "types/index.d.ts",
"keywords": [
"rclnodejs",
"ros2",
"ros",
"rcl",
"robotics",
"typescript"
],
"scripts": {
"install": "node-gyp rebuild",
"docs": "cd docs && make",
"test": "node ./scripts/compile_tests.js && node ./scripts/test.js && npm run dtslint",
"dtslint": "node ./scripts/generate_tsd.js && dtslint test/types",
"lint": "eslint --max-warnings=0 --ext js,ts index.js types scripts lib example rosidl_gen rosidl_parser test benchmark/rclnodejs && node ./scripts/cpplint.js",
"postinstall": "node scripts/generate_messages.js",
"format": "clang-format -i -style=file ./src/*.cpp ./src/*.hpp && prettier --write \"{lib,rosidl_gen,rostsd_gen,rosidl_parser,types,example,test,scripts,benchmark}/**/*.{js,md,ts}\" ./*.{js,md,ts}"
},
"authors": [
"Minggang Wang <minggang.wang@intel.com>",
"Kenny Yuan <kaining.yuan@intel.com>",
"Wanming Lin <wanming.lin@intel.com>",
"Zhong Qiu <zhongx.qiu@intel.com>"
],
"license": "Apache-2.0",
"repository": {
"type": "git",
"url": "git+https://github.com/RobotWebTools/rclnodejs.git"
},
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^4.5.0",
"@typescript-eslint/parser": "^4.5.0",
"clang-format": "^1.4.0",
"commander": "^6.0.0",
"deep-equal": "^1.1.1",
"dtslint": "^4.0.4",
"eslint": "^7.5.0",
"eslint-config-prettier": "^6.11.0",
"eslint-plugin-prettier": "^3.1.4",
"husky": "^4.2.5",
"lint-staged": "^10.2.11",
"mocha": "^8.0.1",
"prettier": "^2.0.5",
"sinon": "^9.0.2",
"tree-kill": "^1.2.2",
"typescript": "^4.0.3"
},
"dependencies": {
"bindings": "^1.5.0",
"compare-versions": "^3.6.0",
"debug": "^4.1.1",
"dot": "^1.1.3",
"fs-extra": "^9.0.1",
"is-close": "^1.3.3",
"mkdirp": "^1.0.4",
"mz": "^2.7.0",
"nan": "^2.14.1",
"ref-napi": "^3.0.0",
"ref-array-di": "^1.2.2",
"ref-struct-di": "^1.1.1",
"walk": "^2.3.14",
"uuid": "^8.2.0",
"int64-napi": "^1.0.1"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.{js,ts,md}": [
"prettier --write"
],
"*.{hpp,cpp}": [
"clang-format -i -style=file"
]
},
"engines": {
"node": ">= 8.12.0 <13.0.0"
}
}