forked from nikita-petko/RbxDataStoreService
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
36 lines (36 loc) · 1.14 KB
/
package.json
File metadata and controls
36 lines (36 loc) · 1.14 KB
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
{
"name": "@mfd/rbxdatastoreservice",
"version": "2.3.11",
"description": "RbxDataStoreService is a module that allows you to access roblox datastores from your Node.js applications.",
"main": "Bin/index.js",
"types": "Bin/Types",
"scripts": {
"build": "tsc -b --clean && tsc -b -v --listEmittedFiles",
"prepare": "npm update && npm run build",
"prepublishOnly": "npm run prepare && npm run compile-installer",
"compile-installer": "node ./compile-first-install.js",
"postinstall": "node ./first-install.js",
"postpublish": "node ./post-publish-cleanup.js",
"test": "npm update && jest --config jestconfig.json --verbose --detectOpenHandles"
},
"keywords": [],
"repository": {
"type": "git",
"url": "https://github.com/nkpetko/RbxDataStoreService.git"
},
"author": "Nikita Petko <petko@mfdlabs.com> (https://github.com/nkpetko)",
"license": "Apache-2.0",
"devDependencies": {
"@types/crypto-js": "^4.0.1",
"@types/jest": "^27.0.2",
"@types/node": "^18.0.1",
"jest": "^27.3.1",
"prettier": "^2.2.0",
"ts-jest": "^27.1.2",
"typescript": "^4.4.3"
},
"dependencies": {
"axios": "^0.27.2",
"crypto-js": "^4.0.0"
}
}