-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
111 lines (111 loc) · 3.32 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
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
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
{
"name": "dualpantoframework",
"version": "0.3.0",
"description": "dev : Oliver Schneider, Jotaro Shigeyama, Alexander Meißner, Nico Böckhoff, Jonas Bounama, Lukas Wagner, Daniel-Amadeus Johannes Glöckner",
"main": "lib/dualpantoframework.js",
"scripts": {
"install": "npm run build && npm run setup-commit-hook",
"build": "npm run script build",
"clean": "npm run script clean",
"platformio": "npm run script platformio",
"config": "npm run script config",
"plotter": "npm run script plotter",
"docs": "npm run script docs",
"unity": "npm run script unity",
"script": "node ./utils/scripts/run.js",
"svgToJs": "node ./utils/svgConverter/svgToJs.js",
"setup-commit-hook": "if-env NODE_ENV=production && echo \" production mode \" || node ./utils/scripts/createJsCommitHook.js"
},
"repository": {
"type": "git",
"url": "https://github.com/HassoPlattnerInstituteHCI/dualpantoframework.git"
},
"author": "jotaro shigeyama",
"license": "ISC",
"gypfile": true,
"bugs": {
"url": "https://github.com/HassoPlattnerInstituteHCI/dualpantoframework/issues"
},
"homepage": "https://github.com/HassoPlattnerInstituteHCI/dualpantoframework#readme",
"dependencies": {
"@tweenjs/tween.js": "^17.2.0",
"co": "^4.6.0",
"http-server": "^0.12.1",
"if-env": "^1.0.4",
"keypress": "^0.2.1",
"node-gyp": "^3.6.2",
"node-pid-controller": "^1.0.1",
"open": "^6.3.0",
"play-sound": "^1.1.2",
"polygon-offset": "^0.3.1",
"say": "^0.16.0",
"serialport": "^9.0.7",
"usb": "^1.6.0",
"websocket": "^1.0.26",
"xml2js": "^0.4.19"
},
"devDependencies": {
"documentation": "^11.0.1",
"eslint": "^5.15.1",
"eslint-config-google": "^0.12.0",
"eslint-plugin-jsdoc": "^7.0.2"
},
"eslintConfig": {
"env": {
"browser": true,
"node": true,
"es6": true
},
"plugins": [
"jsdoc"
],
"extends": "./node_modules/eslint-config-google/index.js",
"rules": {
"comma-dangle": [
"error",
"never"
],
"linebreak-style": [
"off",
"unix"
],
"valid-jsdoc": [
"off"
],
"jsdoc/check-alignment": "error",
"jsdoc/check-indentation": "error",
"jsdoc/check-param-names": "error",
"jsdoc/check-syntax": "error",
"jsdoc/check-tag-names": "error",
"jsdoc/check-types": "error",
"jsdoc/implements-on-classes": "error",
"jsdoc/match-description": "error",
"jsdoc/newline-after-description": "error",
"jsdoc/no-undefined-types": "error",
"jsdoc/require-description": [
"error",
{
"contexts": "ClassDeclaration"
}
],
"jsdoc/require-description-complete-sentence": "error",
"jsdoc/require-hyphen-before-param-description": "error",
"jsdoc/require-param": "error",
"jsdoc/require-param-description": "error",
"jsdoc/require-param-name": "error",
"jsdoc/require-param-type": "error",
"jsdoc/require-returns": "error",
"jsdoc/require-returns-check": "error",
"jsdoc/require-returns-description": "error",
"jsdoc/require-returns-type": "error",
"jsdoc/valid-types": "error"
},
"settings": {
"jsdoc": {
"tagNamePreference": {
"returns": "return"
}
}
}
}
}