Files
node-metaverse/package.json

53 lines
1.4 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",
2018-10-07 17:51:11 +01:00
"version": "0.4.6",
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": ">=6.12.2"
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-07 14:54:50 +01:00
"@types/mocha": "^2.2.48",
"@types/node": "^8.10.34",
2017-12-18 21:04:21 +00:00
"mocha": "^4.0.1",
2018-10-07 14:54:50 +01:00
"source-map-support": "^0.5.9",
2017-11-21 11:29:09 +00:00
"ts-node": "^3.3.0",
2018-10-07 14:54:50 +01:00
"tslint": "^5.11.0",
2017-11-21 11:29:09 +00:00
"tslint-eslint-rules": "^4.1.1",
2018-10-07 14:54:50 +01:00
"typescript": "^2.9.2"
},
"dependencies": {
2017-12-20 14:34:04 +00:00
"@caspertech/llsd": "^1.0.0",
2017-11-24 01:00:56 +00:00
"@types/long": "^3.0.32",
2018-10-07 14:54:50 +01:00
"@types/request": "^2.47.1",
"@types/uuid": "^3.4.4",
"@types/validator": "^6.3.0",
"@types/xml": "^1.0.2",
2018-10-07 14:54:50 +01:00
"@types/xmlrpc": "^1.3.5",
"ipaddr.js": "^1.8.1",
2017-11-24 01:00:56 +00:00
"long": "^3.2.0",
2018-10-07 14:54:50 +01:00
"request": "^2.88.0",
"rxjs": "^5.5.12",
"uuid": "^3.3.2",
"validator": "^9.4.1",
"xml": "^1.0.1",
"xmlrpc": "^1.3.2"
2017-11-21 11:29:09 +00:00
}
2017-12-18 20:05:29 +00:00
}