forked from CasperTech/node-metaverse
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
70 lines (70 loc) · 1.9 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
{
"name": "@tommytheterrible/node-metaverse",
"version": "0.5.25",
"description": "A node.js interface for Second Life.",
"main": "dist/lib/index.js",
"types": "dist/lib/index.d.ts",
"scripts": {
"setup": "npm install",
"prepublish": "npm run build",
"test-only": "mocha -r source-map-support/register dist/lib/tests/",
"pretest": "npm run build",
"test": "npm run test-only",
"build": "tsc --removeComments",
"run": "node -r source-map-support/register example/testBot.js"
},
"engines": {
"node": ">=7.6.0"
},
"author": "CasperTech Ltd",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/CasperTech/node-metaverse.git"
},
"devDependencies": {
"@types/micromatch": "^4.0.1",
"@types/node": "^14.14.10",
"mocha": "^8.2.1",
"source-map-support": "^0.5.19",
"ts-node": "^7.0.1",
"tslint": "^6.1.3",
"tslint-eslint-rules": "^5.4.0",
"typescript": "^4.1.2"
},
"dependencies": {
"@caspertech/llsd": "^1.0.3",
"@types/long": "^4.0.1",
"@types/mocha": "^5.2.7",
"@types/request": "^2.48.5",
"@types/tiny-async-pool": "^1.0.0",
"@types/uuid": "^3.4.9",
"@types/validator": "^9.4.4",
"@types/xml": "^1.0.5",
"@types/xml2js": "^0.4.7",
"@types/xmlrpc": "^1.3.6",
"chalk": "^3.0.0",
"flatted": "^2.0.1",
"fs-extra": "^9.0.1",
"glob": "^7.1.6",
"ipaddr.js": "^1.9.1",
"logform": "^2.1.2",
"long": "^4.0.0",
"micromatch": "^4.0.2",
"moment": "^2.29.1",
"rbush-3d": "0.0.4",
"request": "^2.88.2",
"rxjs": "^6.6.3",
"tar": "git+https://github.com/CasperTech/node-tar.git",
"tar-fs": "^2.0.0",
"tar-stream": "^2.1.0",
"tiny-async-pool": "^1.2.0",
"uuid": "^3.4.0",
"validator": "^10.11.0",
"winston": "^3.2.1",
"xml": "^1.0.1",
"xml2js": "^0.4.23",
"xmlbuilder": "^13.0.2",
"xmlrpc": "^1.3.2"
}
}