-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
59 lines (59 loc) · 1.6 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
{
"name": "auto-ros",
"version": "1.1.0",
"description": "Wrapper of ROSLIB.Ros which automatically reconnects",
"repository": {
"type": "git",
"url": "https://github.com/tue-robotics/auto-ros.git"
},
"author": {
"name": "Matthijs van der Burgh",
"email": "[email protected]"
},
"files": [
"dist",
"src"
],
"main": "src/index.js",
"module": "dist/index.js",
"source": "src/index.js",
"types": "src/index.d.ts",
"scripts": {
"prebuild": "npm run lint",
"build": "babel src --out-dir dist",
"postbuild": "npm run deps",
"deps": "npm run deps:missing && npm run deps:extra",
"deps:missing": "dependency-check . --missing",
"deps:extra": "dependency-check . --extra --no-dev",
"predoc": "rimraf doc",
"doc": "jsdoc -c jsdoc_conf.json",
"lint": "eslint .",
"lint:fix": "npm run lint -- --fix",
"test": "mocha --require @babel/register test/*.js",
"version": "npm run build",
"patch": "npm version patch",
"minor": "npm version minor",
"major": "npm version major",
"postversion": "git push && git push --tags"
},
"dependencies": {
"eventemitter2": "^6.4.0",
"roslib": "^1.2.0"
},
"devDependencies": {
"@babel/cli": "^7.12.0",
"@babel/core": "^7.12.0",
"@babel/eslint-parser": "^7.12.0",
"@babel/preset-env": "^7.12.0",
"@babel/register": "^7.12.0",
"chai": "^4.2.0",
"dependency-check": "^4.1.0",
"eslint": "^9.2.0",
"globals": "^15.1.0",
"jsdoc": "^4.0.0",
"mocha": "^11.0.0",
"rimraf": "^6.0.0",
"sinon": "^19.0.1",
"sinon-chai": "^3.5.0"
}
}