Files
node-metaverse/package.json

56 lines
1.5 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",
"version": "0.5.0",
2017-11-21 11:29:09 +00:00
"description": "A node.js interface for Second Life.",
"main": "dist/index.js",
"types": "dist/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",
2017-12-20 17:35:40 +00:00
"test-only": "mocha -r source-map-support/register dist/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": {
2018-10-10 10:12:20 +01:00
"@types/long": "^4.0.0",
"@types/mocha": "^5.2.5",
"@types/node": "^10.11.6",
"@types/request": "^2.47.1",
"@types/tiny-async-pool": "^1.0.0",
2018-10-10 10:12:20 +01:00
"@types/uuid": "^3.4.4",
"@types/validator": "^9.4.2",
"@types/xml": "^1.0.2",
"@types/xmlrpc": "^1.3.5",
"mocha": "^5.2.0",
2018-10-07 14:54:50 +01:00
"source-map-support": "^0.5.9",
2018-10-10 10:12:20 +01:00
"ts-node": "^7.0.1",
2018-10-07 14:54:50 +01:00
"tslint": "^5.11.0",
2018-10-10 10:12:20 +01:00
"tslint-eslint-rules": "^5.4.0",
"typescript": "^3.1.2"
},
"dependencies": {
2017-12-20 14:34:04 +00:00
"@caspertech/llsd": "^1.0.0",
2018-10-07 14:54:50 +01:00
"ipaddr.js": "^1.8.1",
2018-10-10 10:12:20 +01:00
"long": "^4.0.0",
"rbush-3d": "0.0.4",
2018-10-07 14:54:50 +01:00
"request": "^2.88.0",
2018-10-10 10:12:20 +01:00
"rxjs": "^6.3.3",
"tiny-async-pool": "^1.0.1",
2018-10-07 14:54:50 +01:00
"uuid": "^3.3.2",
2018-10-10 10:12:20 +01:00
"validator": "^10.8.0",
"xml": "^1.0.1",
"xmlrpc": "^1.3.2"
2017-11-21 11:29:09 +00:00
}
2017-12-18 20:05:29 +00:00
}