-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
30 lines (30 loc) · 882 Bytes
/
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
{
"name": "gameanalytics-node-sdk",
"description": "Unofficial GameAnalytics Node.js SDK using the REST API.",
"homepage": "https://github.com/goldfire/gameanalytics-node-sdk",
"version": "1.1.4",
"keywords": [
"GameAnalytics",
"game analytics",
"analytics"
],
"author": "James Simpson <james@goldfirestudios.com> (https://goldfirestudios.com)",
"repository": {
"type": "git",
"url": "git://github.com/goldfire/gameanalytics-node-sdk.git"
},
"scripts": {
"release": "VERSION=`printf 'v' && node -e 'console.log(require(\"./package.json\").version)'` && git tag $VERSION && git push && git push origin $VERSION && npm publish"
},
"main": "index.js",
"license": "MIT",
"dependencies": {
"axios": "^0.19.0",
"pako": "^1.0.10",
"uuid": "^3.3.2",
"ua-parser-js": "^0.7.20"
},
"engines": [
"node >= 6.4.0"
]
}