-
Notifications
You must be signed in to change notification settings - Fork 60
/
package.json
56 lines (56 loc) · 1.88 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
{
"name": "gzweb",
"version": "1.3.0",
"description": "WebGL client for Gazebo",
"repository": {
"type": "git",
"url": "git+https://github.com/osrf/gzweb.git"
},
"config": {
"port": "",
"deploy_op": ""
},
"scripts": {
"test": "./node_modules/.bin/eslint gz3d/src/*.js gz3d/test/*.js gzbridge/server.js && ./node_modules/karma/bin/karma start --singleRun",
"test:headless": "./node_modules/.bin/eslint gz3d/src/*.js gz3d/test/*.js gzbridge/server.js && ./node_modules/karma/bin/karma start --singleRun --browsers ChromeHeadless",
"update": "./node_modules/.bin/grunt build && cd build && cmake ..",
"update-dev": "./node_modules/.bin/grunt concat && cd build && cmake ..",
"start": "if [ $npm_config_port ]; then port=$npm_config_port; fi; cd gzbridge && ./server.js $port",
"deploy": "if [ $npm_config_deploy_op ]; then ./deploy.sh -$npm_config_deploy_op; else ./deploy.sh; fi;",
"docs": "./node_modules/.bin/grunt doc",
"coverage": "codecov"
},
"dependencies": {
"fs": "0.0.1-security",
"http": "0.0.0",
"nan": "^2.14.2",
"node-gyp": "6.1.0",
"path": "^0.12.7",
"websocket": "^1.0.25"
},
"devDependencies": {
"catharsis": "^0.8.9",
"codecov": "^3.6.5",
"eslint": "^4.8.0",
"grunt": "~1.5.3",
"grunt-cli": "^1.2.0",
"grunt-contrib-clean": "^1.1.0",
"grunt-contrib-concat": "^1.0.1",
"grunt-contrib-jshint": "^1.1.0",
"grunt-contrib-uglify-es": "^3.3.0",
"grunt-contrib-watch": "^1.0.0",
"grunt-jsdoc": "^2.1.1",
"istanbul": "^0.4.5",
"jasmine-core": "^2.8.0",
"jasmine-jquery": "^2.1.1",
"jsdoc": "^3.5.5",
"karma": "^6.3.14",
"karma-chrome-launcher": "^3.1.0",
"karma-coverage": "^2.0.3",
"karma-firefox-launcher": "^2.1.0",
"karma-htmlfile-reporter": "^0.3.8",
"karma-jasmine": "^4.0.1",
"taffydb": "^2.7.3",
"underscore": "^1.12.1"
}
}