-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
45 lines (45 loc) · 1.22 KB
/
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
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
{
"name": "terraria-research-tracker",
"version": "1.0.9",
"description": "Parses Terraria \"Journey Mode\" data to determine what has been researched",
"main": "dist/index.js",
"files": [
"dist/*"
],
"type": "module",
"scripts": {
"build": "babel ./src --out-dir ./dist --source-maps --copy-files",
"build-browser": "webpack",
"test": "mocha --require esm"
},
"repository": {
"type": "git",
"url": "git+https://github.com/iagox86/terraria-savefiles.git"
},
"author": "Ron Bowes",
"license": "MIT",
"bugs": {
"url": "https://github.com/iagox86/terraria-savefiles/issues"
},
"homepage": "https://github.com/iagox86/terraria-savefiles#readme",
"devDependencies": {
"@babel/cli": "^7.13.10",
"@babel/core": "^7.13.10",
"@babel/plugin-transform-destructuring": "^7.13.0",
"@babel/preset-env": "^7.13.10",
"chai": "^4.3.3",
"eslint-plugin-node": "^11.1.0",
"esm": "^3.2.25",
"mocha": "^9.1.3",
"terser-webpack-plugin": "^5.1.1",
"webpack": "^5.24.3",
"webpack-cli": "^4.5.0"
},
"dependencies": {
"buffer": "^6.0.3",
"crypto-browserify": "^3.12.0",
"lodash": "^4.17.21",
"process": "^0.11.10",
"stream-browserify": "^3.0.0"
}
}