-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
54 lines (54 loc) · 1.16 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
{
"name": "3drudder-js",
"version": "2.0.7",
"description": "Javascript API for the 3dRudder controller",
"main": "src/index.js",
"directories": {
"example": "examples",
"test": "test"
},
"scripts": {
"test": "mocha test/unit.js",
"build": "npm test && grunt",
"sample": "node server.js"
},
"pre-push": [
"test"
],
"repository": {
"type": "git",
"url": "git+https://github.com/3DRudder/3dRudder-js.git"
},
"keywords": [
"3drudder",
"virtual",
"reality",
"foot-controller",
"vr"
],
"author": "mvivant",
"license": "MIT",
"bugs": {
"url": "https://github.com/3DRudder/3dRudder-js/issues"
},
"homepage": "https://github.com/3DRudder/3dRudder-js#readme",
"devDependencies": {
"browserify": "^14.5.0",
"express": "^4.16.2",
"grunt": "^1.0.1",
"grunt-browserify": "^5.2.0",
"grunt-cli": "^1.2.0",
"grunt-contrib-clean": "^1.1.0",
"mocha": "^4.0.1",
"should": "^13.1.3"
},
"dependencies": {
"node-fetch": "^2.6.0",
"underscore": "^1.8.3",
"ws": "^3.3.1"
},
"optionalDependencies": {
"bufferutil": "^3.0.3",
"utf-8-validate": "^3.0.4"
}
}