Files
node-metaverse/package.json

73 lines
2.0 KiB
JSON
Raw Normal View History

2017-11-21 11:29:09 +00:00
{
2017-12-18 17:00:55 +00:00
"name": "@caspertech/node-metaverse",
2022-05-06 12:20:50 +01:00
"version": "0.5.40",
2017-11-21 11:29:09 +00:00
"description": "A node.js interface for Second Life.",
2020-11-20 12:47:24 +00:00
"main": "dist/lib/index.js",
"types": "dist/lib/index.d.ts",
2017-11-21 11:29:09 +00:00
"scripts": {
2017-12-18 21:04:21 +00:00
"setup": "npm install",
"prepublish": "npm run build",
2020-12-01 12:31:44 +00:00
"test-only": "mocha -r source-map-support/register dist/lib/tests/",
2017-12-18 21:04:21 +00:00
"pretest": "npm run build",
"test": "npm run test-only",
2017-11-24 01:00:56 +00:00
"build": "tsc --removeComments",
2017-12-18 21:04:21 +00:00
"run": "node -r source-map-support/register example/testBot.js"
2017-11-21 11:29:09 +00:00
},
2017-12-20 14:34:04 +00:00
"engines": {
"node": ">=7.6.0"
2017-12-18 23:05:44 +00:00
},
2017-12-18 17:00:55 +00:00
"author": "CasperTech Ltd",
2017-12-18 20:05:29 +00:00
"license": "MIT",
2017-12-18 21:04:21 +00:00
"repository": {
"type": "git",
2017-12-20 14:34:04 +00:00
"url": "git+https://github.com/CasperTech/node-metaverse.git"
2017-12-18 17:07:24 +00:00
},
2017-11-21 11:29:09 +00:00
"devDependencies": {
"@angular-eslint/eslint-plugin": "^12.5.0",
2021-09-22 14:19:04 +01:00
"@types/micromatch": "^4.0.2",
"@types/node": "^16.9.6",
"@types/uuid": "^8.3.1",
"@typescript-eslint/eslint-plugin": "^4.31.2",
"@typescript-eslint/eslint-plugin-tslint": "^4.31.2",
"@typescript-eslint/parser": "^4.31.2",
"eslint": "^7.32.0",
2021-09-22 14:19:04 +01:00
"mocha": "^9.1.1",
"source-map-support": "^0.5.20",
"ts-node": "^10.2.1",
2020-11-20 12:47:24 +00:00
"tslint": "^6.1.3",
2018-10-10 10:12:20 +01:00
"tslint-eslint-rules": "^5.4.0",
2021-09-22 14:19:04 +01:00
"typescript": "^4.4.3"
},
"dependencies": {
2021-09-22 15:34:53 +01:00
"@caspertech/llsd": "^1.0.5",
"@types/long": "^4.0.1",
2021-09-22 14:19:04 +01:00
"@types/mocha": "^9.0.0",
"@types/request": "^2.48.7",
2019-11-22 16:50:24 +00:00
"@types/tiny-async-pool": "^1.0.0",
2021-09-22 14:19:04 +01:00
"@types/validator": "^13.6.3",
"@types/xml": "^1.0.6",
"@types/xml2js": "^0.4.9",
"@types/xmlrpc": "^1.3.7",
"chalk": "^4.1.2",
"flatted": "^3.2.2",
"fs-extra": "^10.0.0",
"glob": "^7.1.7",
"ipaddr.js": "^2.0.1",
"logform": "^2.3.0",
2018-10-10 10:12:20 +01:00
"long": "^4.0.0",
2021-09-22 14:19:04 +01:00
"micromatch": "^4.0.4",
"moment": "^2.29.1",
"rbush-3d": "0.0.4",
"request": "^2.88.2",
2021-09-22 14:19:04 +01:00
"rxjs": "^7.3.0",
"tiny-async-pool": "^1.2.0",
2021-09-22 14:19:04 +01:00
"uuid": "^8.3.2",
"validator": "^13.6.0",
2021-09-22 14:19:04 +01:00
"winston": "^3.3.3",
"xml": "^1.0.1",
"xml2js": "^0.4.23",
2021-09-22 14:19:04 +01:00
"xmlbuilder": "^15.1.1",
"xmlrpc": "github:CasperTech/node-xmlrpc"
2017-11-21 11:29:09 +00:00
}
2017-12-18 20:05:29 +00:00
}