-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
33 lines (33 loc) · 861 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
31
32
33
{
"name": "ffxiv-datamining-github-api",
"version": "0.3.0",
"description": "An XIVAPI-like API for \"using the CSVs\" off of GitHub.",
"main": "lib/ffxiv-datamining-github-api.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"start": "node .",
"build": "npx babel src --out-dir lib",
"build-and-run": "npm run build && npm start"
},
"files": [
"data/**/*.json",
"lib/**/*.js"
],
"author": "karashiiro",
"license": "MIT",
"dependencies": {
"@babel/polyfill": "^7.10.4",
"bent": "^7.3.7",
"csv-parse": "^4.11.1",
"fast-memoize": "^2.5.2",
"leven": "^3.1.0",
"mem": "^6.1.0",
"node-cache": "^5.1.2",
"regenerator-runtime": "^0.13.7"
},
"devDependencies": {
"@babel/cli": "^7.19.3",
"@babel/core": "^7.10.5",
"@babel/preset-env": "^7.10.4"
}
}